IBISWorld API
  1. Industry
IBISWorld API
  • Overview
    • 🚀 Getting Started
    • 📊 About IBISWorld
    • 🚦Rate Limits & Data Size
    • 🌐 API Uptime, SLA & Support
    • 📌 Versioning & API Changes
    • ❓Frequently Asked Questions (FAQs)
    • 📰 API Release Notes
    • Authentication
      POST
  • How-To Guides
    • 🔁 How To: Convert ANZSIC ➜ IBISWorld Report
    • 📥 How To: Download an IBISWorld PDF Report
  • Industry
    • Risk
      • Risk Reports List
      • Recently Updated Risk Reports List
      • Full Industry Risk Report
      • Sections of Risk Report
      • Early Warning System (EWS)
    • States (US) & Provinces (Canada)
      • Industry Reports List
      • Full Industry Report
      • Sections of Industry Report
    • Segment Benchmarking (US)
      • Full Segment Benchmarking Report
      • Sections of a Segment Benchmarking Report
    • ESG
      • Full ESG Report
      • Sections of ESG Report
    • Industry Reports List
      POST
    • Recently Updated Industry Reports List
      POST
    • Sections of Industry Report
      POST
    • Full Industry Report
      POST
    • One Section from Multiple Industry Reports
      POST
    • Industry Report Images
      POST
  • Classifications
    • List of Classification System Versions
    • List of Classification System Titles and Codes
    • Classification System to IBISWorld Report Concordance
    • IBISWorld Report to Classification System Concordance
  • Downloads
    • Download a Report
  • Business Environment Profiles
    • BED Reports List
    • Recently Updated BED Reports List
    • Full BED Report
    • Sections of BED Report
  • Company
    • Company Reports List (Australia)
    • Full Company Report (Australia)
    • Sections of Company Report (Australia)
  1. Industry

Industry Report Images

POST
/industry/v3/images
Returns a list of available visualizations and charts for a given industry report. Each image represents a key data point or analysis section within IBISWorld’s industry reports (e.g., Revenue trends, Profit Margin, Supply Chain).
The response provides an array of image objects, each including:
Name - The type of chart or visualization.
URL - The relative path to retrieve the image file. Append to the IBISWorld API base URL.

Image Types Returned#

NameDescription
RevenueTotal industry revenue value and annual change for 10 historical years and a 5-year outlook.
EmployeesTotal industry employment value and annual change for 10 historical years and a 5-year outlook.
Businesses / EstablishmentsTotal industry establishment value and annual change for 10 historical years and a 5-year outlook.
Profit MarginTotal industry profit value and annual change for 10 historical years.
Life CycleThe industry’s stage of development within its life cycle — ranging from growth to maturity and decline — based on its economic share and establishment trends.
Products and ServicesDisplays the breakdown of industry revenue by major product and service lines, highlighting each segment’s contribution to total revenue.
Major MarketsShows how industry revenue is distributed across key markets, illustrating the relative size of each customer group or buyer segment.
International Trade Imports / ExportsShows the geographic distribution of imports and exports, indicating each country’s contribution to industry trade value based on import or export revenue.
Market Share ConcentrationDisplays the combined market share of the largest companies in the industry over time, compared against the sector average to indicate competitive concentration.
Company Market ShareShows the distribution of industry revenue among key companies, highlighting the share held by leading firms compared to all other participants.
Cost StructureCompares the average operating cost breakdown by industry and sector, showing how expenses such as wages, purchases, and profit contribute to total revenue.
Supply ChainIllustrates the upstream and downstream linkages of the industry, identifying major supplier and buyer industries across first and second tiers.
To retrieve the actual image, append the URL value to the IBISWorld API base path, along with the product and API Version. Example:
https://api.ibisworld.com/industry/v3/image/?country=us&code=11111&language=english&image=revenue

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "Country": "US",
    "Code": "11311",
    "Language": "English"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/industry/v3/images' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Country": "US",
    "Code": "11311",
    "Language": "English"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "Images": [
        {
            "Name": "Revenue",
            "URL": "/image/?country=us&code=11111&language=english&image=revenue"
        },
        {
            "Name": "Employees",
            "URL": "/image/?country=us&code=11111&language=english&image=employees"
        },
        {
            "Name": "Businesses",
            "URL": "/image/?country=us&code=11111&language=english&image=businesses"
        },
        {
            "Name": "ProfitMargin",
            "URL": "/image/?country=us&code=11111&language=english&image=profitmargin"
        },
        {
            "Name": "LifeCycle",
            "URL": "/image/?country=us&code=11111&language=english&image=lifecycle"
        },
        {
            "Name": "ProductsAndServices",
            "URL": "/image/?country=us&code=11111&language=english&image=productsandservices"
        },
        {
            "Name": "MajorMarkets",
            "URL": "/image/?country=us&code=11111&language=english&image=majormarkets"
        },
        {
            "Name": "InternationalTradeImports",
            "URL": "/image/?country=us&code=11111&language=english&image=internationaltradeimports"
        },
        {
            "Name": "InternationalTradeExports",
            "URL": "/image/?country=us&code=11111&language=english&image=internationaltradeexports"
        },
        {
            "Name": "Establishments",
            "URL": "/image/?country=us&code=11111&language=english&image=establishments"
        },
        {
            "Name": "MarketShareConcentration",
            "URL": "/image/?country=us&code=11111&language=english&image=marketshareconcentration"
        },
        {
            "Name": "CompanyMarketShare",
            "URL": "/image/?country=us&code=11111&language=english&image=companymarketshare"
        },
        {
            "Name": "CostStructure",
            "URL": "/image/?country=us&code=11111&language=english&image=coststructure"
        },
        {
            "Name": "SupplyChain",
            "URL": "/image/?country=us&code=11111&language=english&image=supplychain"
        }
    ]
}
🟢204204
🟠401401
🟠403403
Modified at 2025-11-11 20:03:54
Previous
One Section from Multiple Industry Reports
Next
List of Classification System Versions
Built with