Search workforce reduction events
Access and filter corporate layoff data using search parameters and field criteria.
Events API provides access to structured information about workforce reductions extracted from news articles. This guide explains how to discover available search fields, construct search requests, and understand the returned data.
Available search fields
Get available search fields for layoff events using the discovery endpoint:
The endpoint returns the following fields that can be used for filtering search results. All fields are optional for search requests.
Common fields
company_name
: The name of the company conducting the layoff.event_date
: The date when the layoff occurred.extraction_date
: The date when the event was extracted from news sources.
Layoff-specific fields
layoff.number_of_people_laid_off
: The exact number of employees affected by the layoff.layoff.percentage_of_people_laid_off
: The percentage of total workforce affected by the layoff.layoff.min_number_of_people_laid_off
: The minimum number of employees affected when a range is specified.layoff.max_number_of_people_laid_off
: The maximum number of employees affected when a range is specified.layoff.how_much_related
: The relevance rating of the layoff event. Possible values: “Completely Irrelevant”, “Irrelevant”, “Very Poor”, “Poor”, “Fair”, “Good”, “Very Good”, “Excellent”. Default: None.layoff.is_relevant_for_real_estate
: True if the layoff impacts real estate markets; false otherwise.layoff.layoff_reason
: The stated reason for the layoff.layoff.location
: The location details of the layoff. Contains fields for country, state, city, and county.layoff.summary
: A detailed description of the layoff event, including key information about the circumstances and impact.
Searching for events
Use the search endpoint to find layoff events:
Basic request structure
Using search fields
Search by dates (absolute or relative):
Search by employee count:
Search by location:
Search by relevance:
Understanding the response
The API returns matched events in this structure:
Working with articles
See Working with articles for details about article data structure and available fields.
Best practices
- Use
extraction_date
for monitoring recent layoffs and live tracking. - Use
event_date
for historical analysis and reporting. - Combine multiple filters to narrow results more precisely.
- Consider both exact numbers and ranges when searching by employee count.
See also
Was this page helpful?