Skip to main content

Order Book

GET 

/marketdata/api/v1/orderbook/:symbol

Retrieves order book data for a specific market (ticker).

Request

Path Parameters

    symbol stringrequired

    Market pair like btc_usdc

Query Parameters

    depth int32

    Default value: 300

    Order book depth, default and max value is 300

Responses

Success

Schema

    bids

    object[]

    nullable

    List of bid orders

  • Array [

  • price double

    The order price.

    amount double

    The order amount.

  • ]

  • asks

    object[]

    nullable

    List of ask orders

  • Array [

  • price double

    The order price.

    amount double

    The order amount.

  • ]

  • timestamp date-time

    The timestamp of when the order book data was retrieved.

    version int64

    The version of the order book data.

Loading...