IBISWorld API
  1. Classifications
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
    • Recently Updated Industry Reports List
    • Sections of Industry Report
    • Full Industry Report
    • One Section from Multiple Industry Reports
    • Industry Report Images
  • Classifications
    • List of Classification System Versions
      POST
    • List of Classification System Titles and Codes
      POST
    • Classification System to IBISWorld Report Concordance
      POST
    • IBISWorld Report to Classification System Concordance
      POST
  • 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. Classifications

IBISWorld Report to Classification System Concordance

POST
/classifications/v3/concordance/reporttosystem
The Report to System endpoint maps an IBISWorld report code back to its corresponding Classification System code(s) (e.g., ANZSIC, NAICS, NACE, ISIC).
This is the reverse of the System to Report concordance: instead of starting with a classification code, you start with an IBISWorld report and discover how it aligns to official industry coding systems.

Rules & Behavior#

Every IBISWorld report has at least one mapping: Each report is linked to one or more codes within a recognized classification system version.
IBISWorld Reports can map to multiple Classificatoin System codes.
Example: IBISWorld Code A011 - Nursery Production in Australia is mapped to the following ANZSIC 2006 codes:
0111 - Nursery Production (Under Cover)
0112 - Nursery Production (Outdoors)
Primary vs. secondary mapping. If multiple codes are returned, one will be marked as the primary mapping: "PrimaryReportToClassificationConcordance": true
Cross-country mappings: A single classification system may contain mappings for IBISWorld reports from multiple countries.
Example: ISIC Rev. 4 includes mappings to industries in several national markets.
Use the Country xxx in the body request to limit mapping to a specific country.
IBISWorld Report Collections: IBISWorld publishes two main types of industry reports, which can be filtered using the ReportCollection parameter in the request body:
Core (Core) - reports aligned to official coding systems (NAICS, ANZSIC, SIC, etc.), covering established industries.
Specialized (Specialized) - reports covering sub-industries, niche sectors, or emerging markets that fall outside official codes.
Questions?
If you need clarification on how our concordance works or want to request additional mappings, please contact us.

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
{
    "ReportLanguage": "en",
    "ReportCollection": [
        "Core"
    ],
    "ReportCode": [
        "56162"
    ],
    "Country": "US",
    "ClassificationLanguage": "en",
    "Version": [
        "NAICS-2022-USA"
    ],
    "Tier": [
        4
    ],
    "SectorCode": [
        "11"
    ]
}

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 '/classifications/v3/concordance/reporttosystem' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ReportLanguage": "en",
    "ReportCollection": [
        "Core"
    ],
    "ReportCode": [
        "56162"
    ],
    "Country": "US",
    "ClassificationLanguage": "en",
    "Version": [
        "NAICS-2022-USA"
    ],
    "Tier": [
        4
    ],
    "SectorCode": [
        "11"
    ]
}'

Responses

๐ŸŸข200Success
application/json
Body

Example
[
    {
        "ReportCountry": "US",
        "ReportCollections": [
            {
                "ReportCollection": "Core",
                "ClassificationCodesByReport": [
                    {
                        "ReportCode": "11111",
                        "ReportTitle": "Soybean Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11111",
                                        "ClassificationTitle": "Soybean Farming",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1111",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11112",
                        "ReportTitle": "Oilseed Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-06-30T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11112",
                                        "ClassificationTitle": "Oilseed (except Soybean) Farming ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1111",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11115",
                        "ReportTitle": "Corn Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-05-08T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11115",
                                        "ClassificationTitle": "Corn Farming",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1111",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11142",
                        "ReportTitle": "Plant & Flower Growing in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-08-02T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11142",
                                        "ClassificationTitle": "Nursery and Floriculture Production",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1114",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11191",
                        "ReportTitle": "Tobacco Growing in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-07-28T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11191",
                                        "ClassificationTitle": "Tobacco Farming",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1119",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11192",
                        "ReportTitle": "Cotton Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-08-11T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11192",
                                        "ClassificationTitle": "Cotton Farming",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1119",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11193",
                        "ReportTitle": "Sugarcane Harvesting in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11193",
                                        "ClassificationTitle": "Sugarcane Farming ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1119",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11199",
                        "ReportTitle": "Hay & Crop Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11199",
                                        "ClassificationTitle": "All Other Crop Farming ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1119",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11211",
                        "ReportTitle": "Beef Cattle Production in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-07-21T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11211",
                                        "ClassificationTitle": "Beef Cattle Ranching and Farming, including Feedlots ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1121",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11212",
                        "ReportTitle": "Dairy Farms in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11212",
                                        "ClassificationTitle": "Dairy Cattle and Milk Production",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1121",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11221",
                        "ReportTitle": "Hog & Pig Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-05-30T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11221",
                                        "ClassificationTitle": "Hog and Pig Farming ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1122",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11231",
                        "ReportTitle": "Chicken Egg Production in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-05-30T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11231",
                                        "ClassificationTitle": "Chicken Egg Production ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1123",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11241",
                        "ReportTitle": "Sheep Farming in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11241",
                                        "ClassificationTitle": "Sheep Farming ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1124",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11251",
                        "ReportTitle": "Fish & Seafood Aquaculture in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11251",
                                        "ClassificationTitle": "Aquaculture ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1125",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11291",
                        "ReportTitle": "Beekeeping in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-09-16T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11291",
                                        "ClassificationTitle": "Apiculture",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1129",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11292",
                        "ReportTitle": "Horse & Other Equine Production in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11292",
                                        "ClassificationTitle": "Horses and Other Equine Production ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1129",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11311",
                        "ReportTitle": "Timber Services in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11311",
                                        "ClassificationTitle": "Timber Tract Operations ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1131",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11331",
                        "ReportTitle": "Logging in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-04-17T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11331",
                                        "ClassificationTitle": "Logging ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1133",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11411",
                        "ReportTitle": "Fishing in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-05-13T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11411",
                                        "ClassificationTitle": "Fishing ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1141",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11421",
                        "ReportTitle": "Hunting & Trapping in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2024-12-08T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11421",
                                        "ClassificationTitle": "Hunting and Trapping ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1142",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11511",
                        "ReportTitle": "Crop Services in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-01-23T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11511",
                                        "ClassificationTitle": "Support Activities for Crop Production ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1151",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11521",
                        "ReportTitle": "Livestock Production Support Services in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2024-12-27T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11521",
                                        "ClassificationTitle": "Support Activities for Animal Production ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1152",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "ReportCode": "11531",
                        "ReportTitle": "Forest Support Services in the US",
                        "ReportLanguage": "en",
                        "ReportDatePublished": "2025-09-16T00:00:00",
                        "Classifications": [
                            {
                                "ClassificationSystemVersion": "NAICS 2022 - USA",
                                "Version": "NAICS-2022-USA",
                                "YearOfRelease": "2022",
                                "Language": "en",
                                "ClassificationCodes": [
                                    {
                                        "ClassificationCode": "11531",
                                        "ClassificationTitle": "Support Activities for Forestry ",
                                        "ClassificationTierNumber": 4,
                                        "ParentCode": "1153",
                                        "SectorCode": "11",
                                        "PrimaryReportToClassificationConcordance": true
                                    }
                                ]
                            }
                        ]
                    }
                ]
            }
        ]
    }
]
๐ŸŸข204204
๐ŸŸ 401401
๐ŸŸ 403403
Modified atย 2025-10-24 01:33:29
Previous
Classification System to IBISWorld Report Concordance
Next
Download a Report
Built with