Skip to main content
POST
/
v1
/
businesses
/
funding_and_acquisition
/
bulk_enrich
Funding And Acquisition
curl --request POST \
  --url https://api.explorium.ai/v1/businesses/funding_and_acquisition/bulk_enrich \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "request_context": {},
  "parameters": {},
  "business_ids": [
    "<string>"
  ]
}'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 123
  },
  "data": [
    {
      "business_id": "<string>",
      "data": {
        "domain": "<string>",
        "company_name": "<string>",
        "investors": [
          "<string>"
        ],
        "number_of_advisors": 123,
        "num_of_news": 123,
        "current_advisors": [
          {}
        ],
        "ipo_size_usd": "<string>",
        "ipo_date": "2023-11-07T05:31:56Z",
        "is_ipo": true,
        "number_of_investors_for_first_funding_round": 123,
        "first_funding_round_value_usd": 123,
        "first_funding_round_type": "<string>",
        "first_funding_round_date": "2023-11-07T05:31:56Z",
        "number_of_funding_rounds": 123,
        "acquired_by": "<string>",
        "latest_funding_increase_in_percents": "<string>",
        "last_funding_round_date": "2023-11-07T05:31:56Z",
        "last_funding_round_value_usd": "<string>",
        "last_funding_round_type": "<string>",
        "number_of_investors_for_last_funding_round": 123,
        "funding_rounds_info": [
          {}
        ],
        "known_funding_total_value": 123
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves funding and acquisition data for all submitted businesses in a single request.
  • Output: A structured response with historical funding rounds and acquisitions.
Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/funding_and_acquisition/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Track funding rounds to identify growing companies.
  • Analyze acquisition trends for market consolidation insights.
  • Assess investor activity to evaluate market confidence.
For additional enrichment options, explore related API endpoints below.

Body Params - Try Me Example

business_ids: ["8adce3ca1cef0c986b22310e369a0793",
               "a34bacf839b923770b2c360eefa26748"]

Authorizations

api_key
string
header
required

Body

application/json
business_ids
string[]
required
Required array length: 1 - 50 elements
request_context
object
parameters
object

Response

Successful Response

This is base response model for all responses in partner service.

response_context
object
required
total_results
integer
required
data
BusinessesBulkEnrichRow[FundingAndAcquisitionOutputSchema] · object[]
entity_id
I