Events/Updates Historical

Retrieves the historical (time series) order book event data for the specified spot instrument.

📘

Time Range Limit

The maximum time range (difference between startDate and endDate) is 731 days (2 years).

🚧

Not specifying startDate and endDate

If the startDate and endDate query parameters are not provided, the API will return the data from the previous 24 hours.

RESPONSE DATA

Fields and paths are relative to the top-level payload field i.e. metadata.next is equivalent to payload.metadata.next.

JSON Field/PathValue TypeDescription
payload.metadata.requestedStartDatenumberThe timestamp in milliseconds for the start date that was requested by the client.
payload.metadata.requestedEndDatenumberThe timestamp in milliseconds for the end date that was requested by the client.
payload.metadata.returnedStartDatenumberThe timestamp in milliseconds for the actual start date of the data returned by the API.
payload.metadata.returnedEndDatenumberThe timestamp in milliseconds for the actual end date of the data returned by the API.
payload.metadata.nextstringThe URL for the next page of results, if there are more results to fetch. It is a paginated cursor that allows the client to retrieve subsequent data.
payload.metadata.api-versionstringThe version of the API being used, indicated as a date string in the format YYYY-MM-DD.
payload.data[{index}].instrumentstringThe trading pair or instrument identifier, such as "btc_usd".
payload.data[{index}].exchangestringThe name of the exchange where the data originates, such as "gdax".
payload.data[{index}].exchangeTimestampnumberThe timestamp from the exchange in milliseconds for when the order book event was captured.
payload.data[{index}].exchangeTimestampNanosecondsnumberThe timestamp from the exchange in nanoseconds, offering a more precise time for when the order book event was captured.
payload.data[{index}].sequencestringThe sequence number for the order book event, provided by the exchange. Can be null if not provided by exchange.
payload.data[{index}].ask[{askIndex}].pricenumberThe price level of the ask order.
payload.data[{index}].ask[{askIndex}].volumenumberThe volume at the specified ask price level.
payload.data[{index}].ask[{askIndex}].numOrdersnumberThe number of orders at the specified ask price level. Can be null.
payload.data[{index}].bid[{bidIndex}].pricenumberThe price level of the bid order.
payload.data[{index}].bid[{bidIndex}].volumenumberThe volume at the specified bid price level.
payload.data[{index}].bid[{bidIndex}].numOrdersnumberThe number of orders at the specified bid price level. Can be null.
Language
Authorization
Header
Click Try It! to start a request and see the response here!