Run in Apidog
Returns the full list of SupplierIQ company reports available to your licence for the specified country and language. This is the entry point for SupplierIQ API integrations โ use it to discover the supplier catalogue before fetching content via /supplieriq/v3/sections . Each entry carries the Code value you will pass into downstream endpoints. Request Parameters# Parameter Type Required Description Allowed Values Countrystring Yes IBISWorld country code. SupplierIQ is US-only . USLanguagestring Yes Report language. At this time, SupplierIQ is English only . English
Notes# Results are not paginated โ the full licensed catalogue is returned in a single response.
SupplierIQ does not use ReportCollection โ the field is omitted entirely.
Use /supplieriq/v3/updatedreports for incremental sync rather than re-polling /reportlist.
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" ] ,
"Language" : "English"
} Request Code Samples
curl --location 'https://api.ibisworld.com/supplieriq/v3/reportlist' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"Countries": ["US"],
"Language": "English"
}' Responses application/json
Generate Code
[
{
"Country" : "US" ,
"Code" : "426309" ,
"Language" : "English" ,
"Title" : "Jack Cooper Holdings Corp." ,
"PublishedDate" : "2026-06-01T00:00:00"
} ,
{
"Country" : "US" ,
"Code" : "420659" ,
"Language" : "English" ,
"Title" : "Genesys Telecommunications Laboratories Inc." ,
"PublishedDate" : "2026-06-01T00:00:00"
} ,
{
"Country" : "US" ,
"Code" : "10149" ,
"Language" : "English" ,
"Title" : "Encore Wire Corporation" ,
"PublishedDate" : "2026-06-01T00:00:00"
}
]
Modified atย 2026-06-08 20:55:29