Business Expansion
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 dataset from this date in format DD/MM/YYYY |
endDate | N | It will return dataset till this date in format DD/MM/YYYY |
companyIds | N | Array of company ids. It will return dataset for these company ids. If companyIds is not passed, dataset for all the tracked companies will be returned. |
industries | N | Array of industries. |
expansionTypes | | Array of expansion types |
location | N | company location |
amount | N | dataset with deal amount greater than or equal to this amount will be returned |
limit | N | Default value is 100. Number of datasets. If startDate and endDate are not passed, it will return latest 'N' datasets 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 19d ago