book

Returns a snapshot of the specified order book with max 25 levels on each side

POST api/book

{
    "instrument": "BTC-USD",
    "tradable": true
}

Request parameters

Field nameTypeDescription

instrument

string

Instrument name

tradable

boolean

Default: false

Whether to return Tradable order book. By default method returns Global order book.

Response description

Filed nameTypeDescription

Array[2]

Book

0

Array of Levels

Bid Levels (sorted by descending price)

1

Array of Levels

Ask Levels (sorted by ascending price)

Level

Array[2]

0

Efx::Price

Level price

1

Efx::Size

Level total size

Last updated