Bids and asks (snapshot)
What is this endpoint for?
Bids and Asks is commonly called a "Raw Order Book". This endpoint returns all bids and asks from an exchange's order book (up to 10% either side of the mid-pice) at a specific point in time. The snapshot is produced every 30 seconds.
Endpoint
Path Parameters
region
Yes
Choose between eu
and us
.
exchange
Yes
Exchange code.
instrument_class
Yes
instrument
Yes
Query Parameters
continuation_token
No
limit_orders
No
Number of orders to return on bid and ask side per snapshot.
To retreive the best bid/ask, set this parameter to 1
Default: 10
page_size
No
sort
No
Return the data in ascending (asc) or descending (desc) order.
Default: desc
Automatically included in continuation tokens.
start_time
No
Starting time in ISO 8601 (inclusive). Automatically included in continuation tokens.
end_time
No
Ending time in ISO 8601 (exclusive). Automatically included in continuation tokens.
Fields
poll_timestamp
The timestamp at which the raw data snapshot was taken.
poll_date
The date at which the raw data snapshot was taken.
timestamp
The timestamp provided by the exchange. null
when not provided.
asks
The sell orders in the snapshot. If the limit_oders
parameter is used, this will be reflected here. amount
is the quantity of asset to sell, displayed in the base currency. price
is displayed in the quote currency.
bids
The buy orders in the snapshot. If the limit_oders
parameter is used, this will be reflected here. amount
is the quantity of asset to buy, displayed in the base currency. price
is displayed in the quote currency.
Request examples
Response example
Last updated