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.Documentation Index
Fetch the complete documentation index at: https://newscatcherinc-docs.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Available search fields
Get available search fields for layoff events using the discovery endpoint: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):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_datefor monitoring recent layoffs and live tracking. - Use
event_datefor historical analysis and reporting. - Combine multiple filters to narrow results more precisely.
- Consider both exact numbers and ranges when searching by employee count.

