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

Exchange Information

Get Exchange info

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

{
    "timezone": "UTC",
    "serverTime": 1591786316419,
    "rateLimits": [],
    "exchangeFilters": [],
    "symbols": [
        {
            "symbol": "btc_thb",
            "status": "TRADING",
            "baseAsset": "btc",
            "baseAssetPrecision": 5,
            "quoteAsset": "thb",
            "quotePrecision": 2,
            "baseCommissionPrecision": 0,
            "quoteCommissionPrecision": 0,
            "orderTypes": [
                "LIMIT"
            ],
            "icebergAllowed": false,
            "ocoAllowed": false,
            "quoteOrderQtyMarketAllowed": false,
            "isSpotTradingAllowed": true,
            "isMarginTradingAllowed": false,
            "filters": []
        },
        {
            "symbol": "eth_thb",
            "status": "TRADING",
            "baseAsset": "eth",
            "baseAssetPrecision": 4,
            "quoteAsset": "thb",
            "quotePrecision": 2,
            "baseCommissionPrecision": 0,
            "quoteCommissionPrecision": 0,
            "orderTypes": [
                "LIMIT"
            ],
            "icebergAllowed": false,
            "ocoAllowed": false,
            "quoteOrderQtyMarketAllowed": false,
            "isSpotTradingAllowed": true,
            "isMarginTradingAllowed": false,
            "filters": []
        }
    ]
}

PreviousPublicNextDepth

Last updated 4 years ago

Was this helpful?