One Section from Multiple Industry Reports
Run in Apidog
Request Add the parameter Authorization
to Headers ,whose value is to concatenate the Token after the Bearer. Example: Authorization: Bearer ********************
Body Params application/json
{
"Country" : "US" ,
"Codes" : [
"56262" ,
"33712" ,
"31131"
] ,
"Language" : "English" ,
"ReportSection" : "keytakeaways"
} Request Code Samples
curl --location --request POST 'https://api.ibisworld.com/industry/v3/multiplereports' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"Country": "US",
"Codes": [
"56262",
"33712",
"31131"
],
"Language": "English",
"ReportSection": "keytakeaways"
}' Responses application/json Generate Code
{
"Reports" : [
{
"Code" : "EU-A011" ,
"Section" : {
"Title" : "Non-Perennial Crop Growing in Europe"
}
} ,
{
"Code" : "EU-F41" ,
"Section" : {
"Title" : "Building Construction in Europe"
}
} ,
{
"Code" : "EU-C10" ,
"Section" : {
"Title" : "Food Product Manufacturing in Europe"
}
}
]
}
Modified at 2025-10-24 01:34:40