Business Expansion Dataset API

Submit Intellizence Business Expansion Dataset request

post

This API endpoint allows users to access real-time and historical business expansion data. Users can search data using various parameters- dateType,startDate,endDate,date,companyDomain,companyName,companyIndustry,companyLocation,companyType,companyTicker,expansionType,expansionLocation,investment,currency and jobs . 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.

Header parameters
x-api-keystringRequired

Intellizence API key for authenticating the request.

Body
dateTypestring · enumOptional

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.

Example: ANNOUNCEDPossible values:
startDatestring · dateOptional

The start date (YYYY-MM-DD) from which business expansion data is needed. The Intellizence Business Expansion Dataset contains data beginning from 2021-01-01.

Example: 2025-05-01
endDatestring · dateOptional

The end date (YYYY-MM-DD) up to which business expansion data is needed.

Example: 2025-05-01
datestring · dateOptional

Exact date (YYYY-MM-DD) for which the business expansion data is needed.

Example: 2025-05-01
companyNamestringOptional

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.

Example: Kimberly-Clark
companyDomainstringOptional

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.

Example: www.kimberly-clark.com
companyIndustrystring · enumOptional

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.

Example: manufacturingPossible values:
companyLocationstringOptional

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.

Example: Irving,Texas,United States of America
companyTypestring · enumOptional

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.

Example: PublicPossible values:
companyTickerstringOptional

Company Ticker if it's a public company.

Example: KMB
expansionTypestring · enumOptional

Type of expansion for which data is needed. Multiple values can be provided either as a comma-separated string or as an array.

Example: Factory/PlantPossible values:
expansionLocationstringOptional

Location where the expansion is announced. Multiple values can be provided either as a comma-separated string or as an array.

Example: United States
investmentnumber · floatOptional

Filter the records by expansion investment amount. Pass the currency whenver investment is used. If currency is not provided along with investment, all the records that matches the deal amount of any currency will be returned. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000000, >=1000000, <1000000, <=1000000,=1000000,!=1000000, (1000000,400000)

Pattern: ^(>|>=|<|<=|=|!=)?\d+(,\d+)?$
currencystring · enumOptional

The currency of the investment amount.

Example: USDPossible values:
jobsnumber · floatOptional

Number of jobs created. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000, >=1000, <1000, <=1000,=1000,!=1000, (1000,4000)

Pattern: ^(>|>=|<|<=|=|!=)?\d+(,\d+)?$
limitintegerOptional

The maximum number of records to be returned.

Example: 1
Responses
200
Successful response, returns the Intellizence Business Expansion dataset record(s)
application/json
post
POST /api/v2/dataset/business-expansion HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 437

{
  "dateType": "ANNOUNCED",
  "startDate": "2025-05-01",
  "endDate": "2025-05-01",
  "date": "2025-05-01",
  "companyName": "Kimberly-Clark",
  "companyDomain": "www.kimberly-clark.com",
  "companyIndustry": "manufacturing",
  "companyLocation": "Irving,Texas,United States of America",
  "companyType": "Public",
  "companyTicker": "KMB",
  "expansionType": "Factory/Plant",
  "expansionLocation": "United States",
  "investment": "=2000000000",
  "currency": "USD",
  "jobs": "=900",
  "limit": 1
}
{
  "id": "681bafcc22e1b135a7a6c137",
  "announcedDate": "2025-05-01",
  "company": {
    "name": "Kimberly-Clark",
    "domain": "www.kimberly-clark.com",
    "industries": [
      "manufacturing"
    ],
    "location": "Irving,Texas,United States of America",
    "type": "Private",
    "ticker": "KMB"
  },
  "expansionType": "Factory/Plant",
  "expansionLocation": {
    "country": "United States of America",
    "state": "Ohio",
    "city": "Warren"
  },
  "investment": 2000000000,
  "currency": "USD",
  "jobs": 900,
  "lastModified": "2025-03-06",
  "title": "Kimberly-Clark to Invest $2B to Bulk up US Manufacturing",
  "url": "https://www.newsmax.com/newsfront/kimberly-clark-u-s-manufacturing/2025/05/01/id/1209174"
}

Last updated