cURL
curl --request POST \ --url https://api.explorium.ai/v1/businesses/financial_indicators/bulk_enrich \ --header 'Content-Type: application/json' \ --header 'api_key: <api-key>' \ --data ' { "business_ids": [ "<string>" ], "request_context": null, "parameters": { "date": "2023-11-07T05:31:56Z" } } '
{ "response_context": { "correlation_id": "<string>", "request_status": "success", "time_took_in_seconds": 123 }, "total_results": 123, "data": [ { "business_id": "<string>", "data": { "asset_turnover": 123, "cagr": 123, "cogs": 123, "earnings_surprises": {}, "ebitda": 123, "enterprise_value_over_ebitda": 123, "leadership": [ {} ], "peer_companies": {}, "price_earnings_ratio": 123, "revenue_yearly": 123, "roa": 123, "roc": 123, "sg_and_a": 123, "tsr_1y": 123, "tsr_3y": 123, "tsr_5y": 123, "working_capital": 123 } } ], "entity_id": "<string>" }
How It Works
50business_ids
Example Request (cURL)
curl --request POST \ --url https://api.explorium.ai/v1/businesses/financial_indicators/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
Show child attributes
Successful Response
This is base response model for all responses in partner service.
Was this page helpful?