Depth

Get depth chart

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

Query Parameters

NameTypeDescription

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"
        ]
    ]
}

Last updated