satang-api
  • Introduction
  • Authentication
  • Sign Request Example
    • Javascript
    • Python
    • Golang
  • APIs
    • Public
      • Orders
    • Private
      • Deposits
      • Crypto Deposits
      • User/Wallet
      • Orders
    • Portal (Obsoleted)
  • APIs V3
    • General information
      • Kline Chart Interval
      • Authorization
        • Endpoint Security types
    • Public
      • Exchange Information
      • Depth
      • Kline/Candlestick data
      • Ticker
      • Aggregate trade
    • Private
      • Orders
      • Listen Key
    • Websockets
      • General WSS information
      • User Data Streams
      • Streams
        • Aggregate trade
        • Depth
        • Kline
        • Ticker
  • Satang.pro SDK
Powered by GitBook
On this page

Was this helpful?

  1. APIs V3
  2. Public

Depth

Get depth chart

GET https://satangcorp.com/api/v3/depth

Query Parameters

Name
Type
Description

symbol

string

A pair symbol, such as 'btc_thb', 'eth_thb'

limit

number

Maximum number of results (default 5, max 5000)

{
    "lastUpdateId": 310684573,
    "bids": [
        [
            "303500", // Price
            "0.001"   // Quantity   
        ],
        [
            "302836",
            "0.171603"
        ],
        [
            "302100",
            "0.33034"
        ],
        [
            "302081",
            "0.1445"
        ],
        [
            "302000.01",
            "0.03141"
        ]
    ],
    "asks": [
        [
            "304599.99",
            "0.1761"
        ],
        [
            "305000",
            "0.2651"
        ],
        [
            "305050",
            "0.16667"
        ],
        [
            "305443",
            "0.0726"
        ],
        [
            "305444",
            "0.005"
        ]
    ]
}

PreviousExchange InformationNextKline/Candlestick data

Last updated 4 years ago

Was this helpful?