Recently Updated Occupation Report List
Run in Apidog
Returns a list of IBISWorld occupation profiles that have been updated within a specified date range. This is especially useful for synchronizing your system with the latest wage data without re-downloading all profiles. Because occupation data is updated annually, query this endpoint to detect when new BLS OEWS data has been published and refresh only the affected profiles. Query StartDate and EndDate to fetch only the occupation profiles that changed in that period. Best Practices# For annual refresh cycles, query with a StartDate and EndDate spanning the expected BLS publication window (typically Q1โQ2 of each year).
For high-frequency integrations, ensure you respect the Rate Limits . Request Add the parameter Authorization
to Headers ๏ผwhose value is to concatenate the Token after the Bearer. Example: Authorization: Bearer ********************
Body Params application/json Required
{
"Country" : "US" ,
"Language" : "English" ,
"StartDate" : "2025-05-15" ,
"EndDate" : "2026-05-16"
} Request Code Samples
curl --location --request POST 'https://api.ibisworld.com/occupation/v3/updatedreports' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"Country": "US",
"Language": "English",
"StartDate": "2025-05-15",
"EndDate": "2026-05-16"
}' Responses application/json Generate Code
[
{
"Country" : "US" ,
"Code" : "291211" ,
"Language" : "English" ,
"Title" : "Anesthesiologists" ,
"PublishedDate" : "2025-08-18T00:10:10" ,
"ReportCollection" : ""
} ,
{
"Country" : "US" ,
"Code" : "292010" ,
"Language" : "English" ,
"Title" : "Clinical Laboratory Technologists and Technicians" ,
"PublishedDate" : "2025-08-18T00:10:10" ,
"ReportCollection" : ""
} ,
{
"Country" : "US" ,
"Code" : "274015" ,
"Language" : "English" ,
"Title" : "Lighting Technicians" ,
"PublishedDate" : "2025-08-18T00:10:10" ,
"ReportCollection" : ""
}
]
Modified atย 2026-03-26 02:36:26