Depth

Retrieve information of our exchange

GET https://api.ajaib.co.id/coin/internal/v1/depth

Functionality: Retrieves the order book data of a single trading pair.

Authentication: Required

Request Param

Name
Type
Mandatory
Description

symbol

string

Trading pair symbol. Refer to this

limit

integer

default 1, max 100

{
  "bids": [
    {
      "price": 38.25,
      "volume": 0.25123
    },
    {
      "price": 38.25,
      "volume": 0.25123
    }
  ],
  "asks": [
    {
      "price": 38.25,
      "volume": 0.25123
    },
    {
      "price": 38.25,
      "volume": 0.25123
    }
  ]
}

Last updated