IBISWorld API
  1. States (US) & Provinces (Canada)
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
        POST
      • Full Industry Report
        POST
      • Sections of Industry Report
        POST
    • 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. States (US) & Provinces (Canada)

Sections of Industry Report

POST
/industrystate/v3/sections
Returns multiple sections of an Industry State (US) or Provincial (Canada) report in a single request.
This is more efficient than calling each section endpoint individually, and less payload than using the /industrystate/v3/fullreport endpoint.
Below is a reference table of all available sections and their descriptions. The response will vary depending on the included section(s).

Available Sections Reference Table#

Section NameParam to include in the Body in ReportSections arrayDescription
TitletitleOfficial IBISWorld report title used in cataloging, search, and display.
Publication DatepublicationdateMost recent report publication date.
RegionregionName of the state, province, or region covered by the report.
Current Performance AnalysiscurrentperformanceanalysisConcise analysis of the region's industry performance over the past five years.
Outlook AnalysisoutlookanalysisConcise forward-looking analysis summarizing the region's projected industry performance over the next five years.
Regional Industry PerformanceregionalindustryperformanceHeadline key performance metrics summarizing industry revenue, establishments, employment, and wages within the region.
County PerformancecountyperformanceHeadline performance metrics summarizing industry revenue, wages, establishments, employment, and population for each county within the region.
Key External DriverskeyexternaldriversTimeseries data on macroeconomic indicators influencing industry performance in the region, including population, unemployment rate, gross state product, jobs, house price index, net migration, new business formation, per capita disposable income, private investment, and building permits.
Key StatisticskeystatisticsTimeseries of key financial ratios such as revenue per employee, employees per establishment, wages-to-revenue, and average wages.
Key Statistics Annual ChangekeystatisticsannualchangeTimeseries of annual change of industry key statistics.
Key RatioskeyratiosTimeseries of key financial ratios such as revenue per employee, employees per establishment, wages-to-revenue, and average wages.

Request

Authorization
Add the parameter
Authorization
to Headers
๏ผŒwhose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples
{
    "Country": "US",
    "Code": "NY48412",
    "Language": "English",
    "ReportSections": [
        "Title",
        "PublicationDate",
        "Region",
        "CurrentPerformanceAnalysis",
        "OutlookAnalysis",
        "RegionalIndustryPerformance",
        "CountyPerformance",
        "KeyExternalDrivers",
        "KeyRatios",
        "KeyStatistics",
        "KeyStatisticsAnnualChange"
    ]
}

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
curl --location --request POST '/industrystate/v3/sections' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Country": "US",
    "Code": "NY48412",
    "Language": "English",
    "ReportSections": [
        "Title",
        "PublicationDate",
        "Region",
        "CurrentPerformanceAnalysis",
        "OutlookAnalysis",
        "RegionalIndustryPerformance",
        "CountyPerformance",
        "KeyExternalDrivers",
        "KeyRatios",
        "KeyStatistics",
        "KeyStatisticsAnnualChange"
    ]
}'

Responses

๐ŸŸข200Success
application/json
Body

Examples
{
    "Sections": [
        {
            "RequestedSection": "Title",
            "StatusCode": 200,
            "Body": {
                "Title": "Long-Distance Freight Trucking in New York"
            }
        },
        {
            "RequestedSection": "PublicationDate",
            "StatusCode": 200,
            "Body": {
                "PublicationDate": "2025-08-25T12:00:00"
            }
        },
        {
            "RequestedSection": "Region",
            "StatusCode": 200,
            "Body": {
                "RegionName": "New York"
            }
        },
        {
            "RequestedSection": "CurrentPerformanceAnalysis",
            "StatusCode": 200,
            "Body": {
                "CurrentPerformanceAnalysis": [
                    {
                        "Headline": "",
                        "Analysis": [
                            {
                                "PlainText": "The Long-Distance Freight Trucking industry in New York is expected to grow an annualized 0.7% to $4.8 billion over the five years to 2025, while the national industry will likely grow at 0.4% during the same period. Industry establishments increased an annualized 2.8% to 18,941 locations. Industry employment has indecreased an annualized 0.5% to 26,901 workers, while industry wages have  $1.6 billion.",
                                "HTML": "<p>The Long-Distance Freight Trucking industry in New York is expected to grow an annualized 0.7% to $4.8 billion over the five years to 2025, while the national industry will likely grow at 0.4% during the same period. Industry establishments increased an annualized 2.8% to 18,941 locations. Industry employment has indecreased an annualized 0.5% to 26,901 workers, while industry wages have  $1.6 billion.</p>"
                            }
                        ]
                    }
                ]
            }
        },
        {
            "RequestedSection": "OutlookAnalysis",
            "StatusCode": 200,
            "Body": {
                "OutlookAnalysis": [
                    {
                        "Headline": "",
                        "Analysis": [
                            {
                                "PlainText": "Over the five years to 2030, the industry is expected to grow an annualized 1.8% to  $5.3 billion, while the national industry is expected to grow 1.5%. Industry establishments are forecast to grow4% to 23,023 locations. Industry employment is expected to increase an annualized 2.2% to 29,997 workers, while industry wages are forecast to indecrease an annualized 2.1% to $1.8 billion.",
                                "HTML": "<p>Over the five years to 2030, the industry is expected to grow an annualized 1.8% to  $5.3 billion, while the national industry is expected to grow 1.5%. Industry establishments are forecast to grow4% to 23,023 locations. Industry employment is expected to increase an annualized 2.2% to 29,997 workers, while industry wages are forecast to indecrease an annualized 2.1% to $1.8 billion.</p>"
                            }
                        ]
                    }
                ]
            }
        },
        {
            "RequestedSection": "RegionalIndustryPerformance",
            "StatusCode": 200,
            "Body": {
                "RegionalPerformance": {
                    "RegionName": "New York",
                    "NationalIndustryName": "Long-Distance Freight Trucking in the US",
                    "DataPoints": [
                        {
                            "Name": "Establishments",
                            "DataYear": 2025,
                            "Value": 18941,
                            "Unit": "Units",
                            "Multiplicator": 1,
                            "HistoricalGrowthYear": 2020,
                            "HistoricalGrowth": 2.8,
                            "ForecastGrowthYear": 2030,
                            "ForecastGrowth": 4,
                            "ForecastValue": 23023,
                            "NationalValue": 666556,
                            "NationalUnit": "",
                            "NationalHistoricalGrowth": 4,
                            "NationalForecastGrowth": 3,
                            "StatePercentageOfNationalValue": 2.8,
                            "NationalRank": 13
                        },
                        {
                            "Name": "Revenue",
                            "DataYear": 2025,
                            "Value": 4835022175.09112,
                            "Unit": "$",
                            "Multiplicator": 1,
                            "HistoricalGrowthYear": 2020,
                            "HistoricalGrowth": 0.7,
                            "ForecastGrowthYear": 2030,
                            "ForecastGrowth": 1.8,
        
๐ŸŸข204204
๐ŸŸ 403403
๐ŸŸ 401401
Modified atย 2025-10-24 01:35:04
Previous
Full Industry Report
Next
Segment Benchmarking (US)
Built with