POST
/
v1
/
fmp
/
price
/
intraday
/
query
Intraday Prices (Beta)
curl --request POST \
  --url https://api.bigdata.com/v1/fmp/price/intraday/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "E3266Z"
  },
  "timestamp": {
    "end": "2023-09-01T16:00:00Z",
    "start": "2023-09-01T09:00:00Z"
  },
  "interval": "15min",
  "pagination": {}
}'
{
  "results": {
    "rp_entity_id": "<string>",
    "target_identifier_id": "<string>",
    "fields": [
      "<string>"
    ],
    "values": [
      [
        "<any>"
      ]
    ]
  },
  "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

Input model for the public companies Intraday endpoint.

Response

200 - application/json

Successful Response

Company Intraday Prices response model.