Layoff Dataset API

POST /api/v1/dataset/layoff
Request Body
{
"startDate": "start_date",
"endDate": "end_date",
"companyIds": "company_ids",
"industries": "industries",
"layoffTypes": "layoffTypes",
"location": "location",
"count": "count",
"limit": "limit"
}
Param
Mandatory
Description
startDate
N
It will return records from Start Date (Last Modified Date) in format DD/MM/YYYY.
endDate
N
It will return records till End Date (Last Modified Date) in format DD/MM/YYYY.
companyIds
N
Array of Intellizence Company IDs. It will return records for these Company IDs. If Company IDs is not passed, records for all the tracked companies will be returned.
industries
N
Array of Industries.
layoffTypes
N
Array of Layoff Types.
location
N
Company Headquarter Location.
count
N
Records with Deal Amount greater than or equal to this amount will be returned.
limit
N
Default value is 100 records. If Start Date and End Date are not passed, it will return latest 'N' records depending on limit value.
Response Body
[
{
"id": "620a269c040f99079b259700",
"announcedDate": "10/06/2021",
"company": {
"id": "IN000771",
"name": "Cerner",
"domain": "www.cerner.com",
"industries": [
"technology",
"it services & outsourcing"
],
"location": "Kansas City,Missouri,United States of America",
"ticker": ["CERN"],
"stockExchange": ["Nasdaq"],
"type": "Public"
},
"layoffType": [
"Downsizing/Layoff"
],
"layoffReason": [],
"count": 500,
"url": "https://www.beckershospitalreview.com/ehrs/cerner-lays-off-hundreds-of-employees.html",
"title": "Cerner lays off hundreds of employees",
"lastModified": "07/07/2021"
}
]
Check out Intellizence Layoff Dataset - Data Dictionary to learn about the data fields and values.