cURL
curl --request POST \ --url https://api.explorium.ai/v1/businesses/firmographics/bulk_enrich \ --header 'Content-Type: application/json' \ --header 'api_key: <api-key>' \ --data ' { "business_ids": [ "<string>" ], "request_context": null, "parameters": {} } '
{ "response_context": { "correlation_id": "<string>", "request_status": "success", "time_took_in_seconds": 123 }, "total_results": 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>" }
How It Works
50business_ids
Example Request (cURL)
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" ] }'
Best Practices
business_ids: ["8adce3ca1cef0c986b22310e369a0793", "a34bacf839b923770b2c360eefa26748"]
1 - 50
null
Successful Response
This is base response model for all responses in partner service.
Show child attributes
Was this page helpful?