POST
/
v1
/
company-revenue-geographic-segments
/
query
Company Revenue Geographic
curl --request POST \
  --url https://api.bigdata.com/v1/company-revenue-geographic-segments/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "4A6F00"
  },
  "period": "annual"
}'
{
  "results": {
    "rp_entity_id": "4A6F00",
    "target_identifier_id": "GOOGL",
    "fields": [
      "FISCAL_YEAR",
      "PERIOD",
      "REPORTED_CURRENCY",
      "REGION_SEGMENTS"
    ],
    "values": [
      2025,
      "Q3",
      "USD",
      {
        "Americas Segment": 41198000000,
        "Europe Segment": 24014000000,
        "Greater China Segment": 15369000000,
        "Japan Segment": 5782000000,
        "Rest of Asia Pacific Segment": 7673000000
      }
    ]
  },
  "errors": [
    {
      "message": "<string>"
    }
  ],
  "pagination": {
    "cursor": "00000DexaRK4NT6t",
    "has_cursor": true
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
identifier
object
required

Object specifying which identifier you are using to request the company revenue geographic data. You must supply one type and its corresponding value.

period
enum<string>

Select whether the company revenue geographic data to be provided are on an annual or quarterly basis.

Available options:
annual,
quarter

Response

200 - application/json

Successful Response

results
object
required
errors
ErrorDetail · object[] | null
pagination
object | null

Common pagination response for endpoints that support pagination.

metadata
object | null