Intellizence Layoffs Signals API
This REST API provides continuous access to ongoing and historical layoffs, downsizing and job cuts signals from the Intellizence Layoffs Dataset.
Ready to get started? Request your API key and start building. Questions? Schedule a call or email us at sales@intellizence.com.
Security Notice: Please keep API Key secure. Do not share your API key in publicly accessible areas such as GitHub, client-side code, and so forth.
This REST API endpoint provides access to both ongoing and historical layoff data from the Intellizence Layoffs Dataset. Data access is limited to records within your subscription's entitled date range.
Users can search data using the following parameters:
dateType, startDate, endDate, date, companyDomain, companyName, companyIndustry, companyLocation, companyType, companyTicker, layoffType, layoffLocation, and layoffReason.
Users can limit the number of records returned using the limit parameter. All parameters are optional.
The API key must be passed in the HTTP header as x-api-key.
Intellizence API key for authenticating the request.
Choose the date type used to filter records.The default value is 'ANNOUNCED'. To get the daily update of records created or modified, 'LAST-MODIFIED' is recommended.
ANNOUNCEDPossible values: The start date (YYYY-MM-DD) from which layoff data is needed. The Intellizence Layoff Dataset contains data beginning from 2020-01-01.
2026-03-03The end date (YYYY-MM-DD) up to which layoff data is needed.
2026-03-03Exact date (YYYY-MM-DD) for which the layoff data is needed.
2026-03-03Name(s) of the company for which layoff data is needed.Partial name matching is supported.Multiple values can be provided either as a comma-separated string or as an array.
DTE EnergyThe website domain(s) of the company for which the layoff data is needed. Partial domain matching is supported. Multiple values can be provided either as a comma-separated string or as an array.
dteenergy.comThe industry or industries of the companies for which layoff data is requested. Industries are predefined by Intellizence, and only the values listed below are supported. Multiple values can be provided as an array.
energy & utilitiesPossible values: The location of the company headquarters for which layoff data is needed. The location can be specified as a city, state/province, or country. Multiple values can be provided either as a comma-separated string or as an array.
Detroit,Michigan,United States of AmericaThe type of company or organization for which layoff data is needed. The company types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
PublicPossible values: Stock ticker of the company
DTEThe type of layoff/job cut. The layoff types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Permanent Plant ClosurePossible values: Layoff reason mentioned in the source. The layoff reasons are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Not SpecifiedPossible values: The location of the company where layoff was announced. The location can be city or state/province or country. Multiple values can be provided either as a comma-separated string or as an array.
Superior,Wisconsin,United States of AmericaThe maximum number of records to be returned.
1Successful response.
Note: Credit fields (openingBalance, closingBalance, creditsConsumed) are returned only for Pay-Per-Use billing.
2001864386421400 - Bad Request
Bad request, possibly missing required parameters, invalid data, invalid or missing API key.
- 701 - Start Date is not in YYYY-MM-DD format.
- 702 - End Date is not in YYYY-MM-DD format.
- 703 - Plan or resource not subscribed
- 709 - No companies configured for this account.
- 710 - No triggers configured for this account.
402 - Payment Required
- 704 - Payment is pending.
- 712 - Insufficient credits for this request.
403 - Forbidden
- 707 - Subscription has expired.
- 708 - Start date is outside your subscription's allowed date range.
500 - Internal Server Error
- 715 - A technical error occurred.
- 799 - A technical error occurred.
POST /api/dataset/layoff HTTP/1.1
Host: connect.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 58
{
"dateType": "LAST-MODIFIED",
"date": "YYYY-MM-DD",
"limit": 5
}{
"code": 200,
"count": 1,
"dataset": [
{
"id": "69a94b385c3136c85cd55f2c",
"announcedDate": "2026-03-03",
"company": {
"name": "DTE Energy",
"domain": "dteenergy.com",
"industries": [
"energy & utilities"
],
"location": "Detroit,Michigan,United States of America",
"ticker": [
"DTE"
],
"stockExchange": [
"NYSE"
],
"type": "Public"
},
"layoffType": [
"Permanent Plant Closure"
],
"layoffReason": [
"Not Specified"
],
"businessDivision": "Midwest Energy Resources Co.",
"sourceType": "WARN Filings",
"location": {
"country": "United States of America",
"state": "Wisconsin",
"city": "Superior"
},
"count": 54,
"url": "https://docs.google.com/spreadsheets/d/1rxOPsjFdc-XXJjNrg6C8wB1ll7T9Yg1-jKzck_qk3bo/edit?pli=1&gid=0#gid=0",
"title": "WARN Filings - March 2026",
"lastModified": "2026-03-05"
}
]
}Last updated