Relocation Dataset API
This API endpoint allows users to access real-time and historical business relocation data. Users can search data using various parameters- dateType
,startDate
,endDate
,date
,companyDomain
,companyName
,companyIndustry
,companyLocation
,companyType
,companyTicker
,currentLocation
,newLocation
, and relocationType
. Users can limit the number of records returned using the limit
parameter. All the parameters are optional. The API key has to be passed in HTTP header with the name x-api-key
.
Intellizence API key for authenticating the request.
Choose the date type used to filter records.The default value is 'ANNOUNCED'. To get the daily update of records created or modified, 'LAST-MODIFIED' is recommended.
ANNOUNCED
Possible values: The start date (YYYY-MM-DD) from which business relocation data is needed. The Intellizence Business Expansion Dataset contains data beginning from 2023-01-01.
2025-01-01
The end date (YYYY-MM-DD) up to which business expansion data is needed.
2025-01-01
Exact date (YYYY-MM-DD) for which the business expansion data is needed.
2025-01-01
The name(s) of the company for which the business expansion data is needed. Partial name matches are supported. Multiple values can be provided either as a comma-separated string or as an array.
CBIZ
The website domain(s) of the company for which the business expansion data is needed. Partial website domain matches are supported. Multiple values can be provided either as a comma-separated string or as an array.
www.cbiz.com
The industry or industries of companies for which business expansion data is needed. The industries are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values should be provided as an array.
accounting, audit & tax
Possible values: The location of the company headquarters for which business expansion data is needed. The location can be city or state/province or country. Multiple values can be provided either as a comma-separated string or as an array.
Cleveland,Ohio,United States of America
The type of company for which business expansion data is needed. The company types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Public
Possible values: Company Ticker if it's a public company.
CBZ
Type of relocation for which data is needed. Multiple values can be provided either as a comma-separated string or as an array.
Office
Possible values: Current location of the business operation. Multiple values can be provided either as a comma-separated string or as an array.
Miami
New location of the business operation. Multiple values can be provided either as a comma-separated string or as an array.
Coral Gables
The maximum number of records to be returned.
1
POST /api/v2/dataset/relocation HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 366
{
"dateType": "ANNOUNCED",
"startDate": "2025-01-01",
"endDate": "2025-04-30",
"companyName": "CBIZ",
"companyDomain": "www.cbiz.com",
"companyIndustry": [
"accounting, audit & tax"
],
"companyLocation": "Cleveland,Ohio,United States of America",
"companyType": "Public",
"companyTicker": "CBZ",
"currentLocation": "Miami",
"newLocation": "Coral Gables",
"relocationType": "Office",
"limit": 1
}
{
"id": "67f60ab80ca55820b229ad33",
"announcedDate": "2025-04-07",
"company": {
"name": "CBIZ",
"domain": "www.cbiz.com",
"industries": [
"accounting, audit & tax"
],
"location": "Cleveland,Ohio,United States of America",
"type": "Public",
"ticker": "CBZ"
},
"expansionType": "Office",
"currentLocation": {
"country": "United States of America",
"state": "Florida",
"city": "Miami"
},
"newLocation": {
"country": "United States of America",
"state": "Florida",
"city": "Coral Gables"
},
"lastModified": "2025-04-09",
"title": "CBIZ among companies relocated to Coral Gables office building",
"url": "https://www.bizjournals.com/southflorida/news/2025/04/07/marcum-among-companies-relocated-to-coral-gables.html?ana=brss_1049"
}
Last updated