π How To: Convert ANZSIC β IBISWorld Report
π― Goal#
Given an official ANZSIC code (e.g., 4511), find the matching IBISWorld report code (e.g., H4511b) and then retrieve the report.WZ β German Classification of Economic Activities (Wirtschaftszweige)
π§ Overview#
1.
Map ANZSIC β IBISWorld using the Concordance endpoint.
2.
Choose the right match (if multiple).
3.
Fetch the report using the IBISWorld code.
π‘ Tip: A single ANZSIC code may return multiple IBISWorld reports (Core, Specialized, Spotlight). You can filter by ReportCollection, Country, or Title depending on your use case.
1) Map ANZSIC β IBISWorld Report Code#
{
"Country": "AU",
"Version": ["ANZSIC-2006"],
"ClassificationCode": ["4511"]
}
[
{
"ClassificationSystemVersion": "ANZSIC-2006",
"ReportsByClassificationCode": [
{
"ClassificationCode": "4511",
"ClassificationTitle": "Cafes and Restaurants",
"ClassificationTierNumber": 4,
"Reports": [
{
"ReportCountry": "AU",
"ReportCode": "H4511a",
"ReportTitle": "Restaurants in Australia",
"ReportCollection": "Core",
"ReportLanguage": "en",
"ReportDatePublished": "2025-03-20T00:00:00Z"
},
{
"ReportCountry": "AU",
"ReportCode": "H4511b",
"ReportTitle": "Cafes and Coffee Shops in Australia",
"ReportCollection": "Core",
"ReportLanguage": "en",
"ReportDatePublished": "2025-01-09T00:00:00Z"
}
]
}
]
}
]
π§Ύ Field Reference#
ClassificationSystemVersion β Version of the Classification System used (e.g., ANZSIC-2006).
ClassificationTierNumber β Depth level in the hierarchy (e.g., Tier 4).
ReportCollection β The IBISWorld Collection type (Core, Specialized, Spotlight).
ReportDatePublished β Last published date for the report.
π§ Interpretation: Use the ReportCode (e.g., H4511b) with the /industry/v3/fullreport endpoint or other /industry/v3/ endpoints to fetch the IBISWorld report or sections of the IBISWorld report.
2) Handle Multiple Matches#
If multiple reports are returned:Choose by collection (Core vs Specialized).
Prefer the most recent publish date.
Or present the list to a user for manual selection.
3) Fetch the Report#
π Keeping Data Fresh#
Cache full reports but refresh when updates are detected.
Modified atΒ 2025-10-19 23:27:35