Major Hiring Dataset API

POST /api/v1/dataset/major-hiring

Request Body

{
    "startDate": "start_date",
    "endDate": "end_date",
    "companyIds": "company_ids",
    "industries": "industries",
    "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.

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": "6285f743b5fd43422c122144",
        "announcedDate": "04/05/2022",
        "company": {
            "id": "IN000385",
            "name": "Intel",
            "domain": "www.intel.com",
            "industries": [
                "technology",
                "manufacturing"
            ],
            "location": "Santa Clara,California,United States of America",
            "ticker": ["INTC"],
            "stockExchange": ["Nasdaq"],
            "type": "Public"
        },
        "numberOfJobs": 500,
        "jobType": [
            "Not Specified"
        ],
        "jobFunction": [
            "Technology"
        ],
        "url": " https://www.bizjournals.com/atlanta/news/2022/05/04/intel-adding-jobs-to-atlanta.html?",
        "title": "Intel to add hundreds of jobs in Atlanta starting at six-figure salaries ",
        "lastModified": "01/06/2022"
    }
]

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

Last updated