Skip to main content
POST
/
v1
/
businesses
/
firmographics
/
bulk_enrich
Firmographics
curl --request POST \
  --url https://api.explorium.ai/v1/businesses/firmographics/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": {
        "business_id": "<string>",
        "name": "<string>",
        "business_description": "<string>",
        "website": "<string>",
        "country_name": "<string>",
        "region_name": "<string>",
        "city_name": "<string>",
        "street": "<string>",
        "zip_code": "<string>",
        "naics": "<string>",
        "naics_description": "<string>",
        "sic_code": "<string>",
        "sic_code_description": "<string>",
        "ticker": "<string>",
        "number_of_employees_range": "1-10",
        "yearly_revenue_range": "0-500K",
        "linkedin_industry_category": "<string>",
        "linkedin_profile": "<string>",
        "business_logo": "<string>",
        "locations_distribution": [
          {}
        ]
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves enriched data for all submitted businesses in a single request.
  • Output: A structured response with the requested enrichment data for each business.
Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/firmographics/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Batch process multiple businesses to improve API efficiency and reduce request overhead.
  • Use firmographic, technographic, and financial indicators together for comprehensive business profiling.
  • Monitor funding and workforce trends to track business growth and hiring activity.
  • Leverage competitive landscape data to benchmark businesses against industry peers.
For additional enrichment options, explore related API endpoints below.

Bulk Businesses Enrichments API

The Bulk Businesses Enrichments API allows users to enrich multiple businesses simultaneously by submitting up to 50 business IDs per request. This feature is designed for high-efficiency data processing, enabling organizations to scale their data enrichment efforts, streamline workflows, and reduce API call overhead.

Endpoints for Bulk Enrichments

1. Firmographics (Bulk)

Endpoint: POST /businesses/firmographics/bulk_enrich
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves enriched data for all submitted businesses in a single request.
  • Output: A structured response with the requested enrichment data for each business.
Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/firmographics/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Batch process multiple businesses to improve API efficiency and reduce request overhead.
  • Use firmographic, technographic, and financial indicators together for comprehensive business profiling.
  • Monitor funding and workforce trends to track business growth and hiring activity.
  • Leverage competitive landscape data to benchmark businesses against industry peers.
For additional enrichment options, explore related API endpoints below.

Body Params - Try Me Example

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

2. Technographics (Bulk)

Endpoint: POST /businesses/technographics/bulk_enrich
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves enriched data for all submitted businesses in a single request.
  • Output: A structured response with the requested enrichment data for each business.

Example Request (cURL)

Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/technographics/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Batch process multiple businesses to improve API efficiency and reduce request overhead.
  • Use firmographic, technographic, and financial indicators together for comprehensive business profiling.
  • Monitor funding and workforce trends to track business growth and hiring activity.
  • Leverage competitive landscape data to benchmark businesses against industry peers.
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[FirmographicsOutputSchema] · object[]
entity_id
I