Run in Apidog
Returns a list of all available IBISWorld Procurement reports for one or more countries. Content is currently only available in English. This is the entry point for procurement API integrations โ use it to discover available category reports before fetching content via /procurement/v3/sections . Feed the returned report codes into downstream endpoints to retrieve detailed procurement intelligence. Notes# Results are not paginated โ the full list is returned in a single response.
Procurement supports a smaller set of countries than the Industry product (US, CA, EUR, GL) and does not use ReportCollection.
Request Add the parameter Authorization
to Headers ๏ผwhose value is to concatenate the Token after the Bearer. Example: Authorization: Bearer ********************
Body Params application/json Required
{
"Countries" : [ "US" , "EUR" , "CA" , "GL" ] ,
"Language" : "English"
} Request Code Samples
curl --location --request POST 'https://api.ibisworld.com/procurement/v3/reportlist' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"Countries": ["US","EUR","CA","GL"],
"Language": "English"
}' Responses application/json Generate Code
[
{
"Country" : "US" ,
"Code" : "31275389" ,
"Language" : "English" ,
"Title" : "Claims Management Software" ,
"PublishedDate" : "2026-03-26T00:00:00"
} ,
{
"Country" : "US" ,
"Code" : "56255252" ,
"Language" : "English" ,
"Title" : "Wireline Telephone Services" ,
"PublishedDate" : "2026-03-26T00:00:00"
} ,
{
"Country" : "US" ,
"Code" : "30971631" ,
"Language" : "English" ,
"Title" : "First Aid Kits" ,
"PublishedDate" : "2026-03-26T00:00:00"
} ,
]
Modified atย 2026-04-01 04:06:30