Order Books
Get order books returns a full order book for a crypto pair from an exchange.
Get Level 2 Orderbook
GET
https://api.abyiss.com/v1/{exchange}/{market}/orders
Returns a snapshot of the recent level 2 orderbook for a crypto pair on an exchange.
Path Parameters
Name | Type | Description |
---|---|---|
exchange* | string | Unique exchange identifier used by Abyiss. |
market* | string | Unique Crypto Pair identifier used by the exchange. |
Query Parameters
Name | Type | Description |
---|---|---|
apiKey* | string | Your Abyiss API Key |
Copy & Paste Code
Response Object
Example URL: https://api.abyiss.com/v1/coinbasepro/BTC-USD/orders?apiKey=
Response Attributes
Attribute Name | Data Type | Description |
---|---|---|
exchange | string | The exchange id the order book is from. |
market | string | The crypto pair the order book is about. |
nonce | integer | The serial unique identifier of the order book on the exchange. |
bids | array | Arrays of bids in the market [[float, float], [float, float]] |
asks | array | Arrays of asks in the market [[float, float], [float, float]] |
Last updated