Skip to main content

Get orderbook

GET 

/v3/orderbook

This endpoint returns the entire non-cumulative order book of currently listed Futures contracts.

Request

Query Parameters

    symbol stringrequired

    The symbol of the Futures.

Responses

Schema
    oneOf
    serverTime string

    Server time in Coordinated Universal Time (UTC)

    result string

    Possible values: [success]

    orderBook object

    A structure containing lists with bid and ask prices and sizes.

    asks array[]

    Possible values: >= 2, <= 2

    The first value of the inner list is the ask price, the second is the ask size. The outer list is sorted ascending by ask price.

    bids array[]

    Possible values: >= 2, <= 2

    The first value of the inner list is the bid price, the second is the bid size. The outer list is sorted descending by bid price.

Loading...