Get Current Order Book
GEThttps://api.gemini.com/v1/book/{symbol}
This will return the current order book as two arrays (bids / asks).
Note
The quantities and prices returned are returned as strings rather than numbers. The numbers returned are exact, not rounded, and it can be dangerous to treat them as floating point numbers.
GET
curl --request GET \
--url https://api.gemini.com/v1/book/BTCUSDPath Parameters
Query Parameters
Responses
The response will be two arrays. The bids and the asks are grouped by price, so each entry may represent multiple orders at that price. Each element of the array will be a JSON object.
Last modified on