POST
/
v1
/
price
/
changes
/
query
Price Changes
curl --request POST \
  --url https://api.bigdata.com/v1/price/changes/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "4A6F00"
  }
}'
{
  "results": [
    {
      "rp_entity_id": "4A6F00",
      "target_identifier_id": "GOOGL",
      "1D": -0.546,
      "5D": -2.946,
      "1M": 18.659,
      "3M": 41.633,
      "6M": 48.909,
      "ytd": 29.752,
      "1Y": 51.042,
      "3Y": 150.372,
      "5Y": 237.022,
      "10Y": 687.536,
      "max": 9692.43
    }
  ],
  "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 balance sheet. You must supply one type and its corresponding value.

Response

200 - application/json

Successful Response

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

Common pagination response for endpoints that support pagination.

metadata
object | null