Business Expansion Dataset API
POST /api/v1/dataset/business-expansion
Request Body
{
"startDate": "start_date",
"endDate": "end_date",
"companyIds": "company_ids",
"industries": "industries",
"expansionTypes": "expansionTypes",
"location": "location",
"amount": "amount",
"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. |
expansionTypes | | Array of Expansion Types. |
location | N | Company Headquarter Location. |
amount | 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": "24/03/2021",
"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"
},
"investment": 20000000000,
"currency": "USD",
"expansionType": [
"Factory/Plant"
],
"locations": {
"country": "United States of America",
"state": "Arizona"
},
"jobs": "3000",
"url": "https://www.bizjournals.com/sacramento/news/2021/03/24/intel-20b-domestic-chip-manufacturing.html",
"title": "Intel says it will invest $20 billion in domestic chip manufacturing",
"lastModified": "29/03/2021"
}
]
Check out Intellizence Business Expansion Dataset - Data Dictionary to learn about the data fields and values.
Last modified 3mo ago