Layoff Dataset API

POST /api/v1/dataset/layoff

Request Body

{
    "startDate": "start_date",
    "endDate": "end_date",
    "companyIds": ["company_id"],
    "industries": ["industry"],
    "industrySegments": ["segment"],
    "layoffTypes": ["layoffType"],
    "countries": ["country"],
    "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.

industrySegments

N

Array of industry segments.

layoffTypes

N

Array of Layoff Types.

countries

N

Array of Company Headquarter countries.

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": "66d5c726097bdb5ed9d10868",
        "announcedDate": "31/08/2024",
        "company": {
            "id": "IN000385",
            "name": "Intel",
            "domain": "www.intel.com",
            "industries": [
                "technology"
            ],
            "industrySegments": [],
            "location": "Santa Clara,California,United States of America",
            "ticker": [
                "INTC"
            ],
            "stockExchange": [
                "Nasdaq"
            ],
            "type": "Public"
        },
        "count": 730,
        "layoffType": [
            "Downsizing/Layoff"
        ],
        "location": {
            "country": "Ireland",
            "state": "Kildare",
            "city": "Leixlip"
        },
        "layoffReason": [
            "Restructuring"
        ],
        "businessDivision": "Intel",
        "url": "https://www.msn.com/en-in/autos/photos/intel-may-impose-mandatory-layoffs-on-over-700-employees-in-this-region-without-severance-check-details/ar-AA1pL3vz?ocid=BingNewsSerp",
        "title": "Intel May Impose Mandatory Layoffs On Over 700 Employees In This Region Without Severance",
        "lastModified": "02/09/2024"
    }
]

Check out Intellizence Layoff Dataset - Data Dictionary to learn about the data fields and values.

Start a Free Trial or Schedule a Call to discuss subscription.

Last updated