Skip to main content
POST
/
v1
/
businesses
/
financial_indicators
/
bulk_enrich
Financial Indicators
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 '{
  "request_context": {},
  "parameters": {
    "date": "2023-11-07T05:31:56Z"
  },
  "business_ids": [
    "<string>"
  ]
}'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 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>",
  "total_results": 123
}
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves financial metrics data for all submitted businesses in a single request.
  • Output: A structured response with key financial indicators.
Bash
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"
  ]
}'
  • Analyze revenue trends to assess financial stability.
  • Compare profitability metrics to evaluate business performance.
  • Monitor investment returns to track growth and market value.
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[FinancialIndicatorsOutputSchema] · object[]
entity_id
I