Skip to content

Ticker List

Get ticker list information

Http Request

GET
/api/spot/instruments/ticker_list

Request Frequency Restriction:

  • 2times / 1second

Postman

pay attention to replace "restful_base_endpoint"

curl --location 'restful_base_endpoint/api/spot/instruments/ticker_list'

Request Parameters

None

Response fields description

Name Type Description
trade_ pair_name string currency pair name, such as BTC/USDT
last_ price string latest price
lowest_ ask string one price
highest_ bid string buy a price
highest_ price_24h string 24h highest price
lowest_ price_24h string 24h lowest price
volume24h string 24h trading volume
chg24h string 24h price change rate
chg0h string 0h price change rate
amount24h string 24h trading volume

Response

{
  "code": 200,
  "message": null,
  "data": 
    [
      {
        "trade_pair_name": "BRISE/USDT",
        "last_price": "0.00000047694",
        "highest_bid": "0.00000046030",
        "lowest_ask": "0.00000049376",
        "highest_price_24h": "0.00000048356",
        "lowest_price_24h": "0.00000033247",
        "volume24h": "3589.12",
        "chg24h": "0.4345",
        "chg0h": "0.4345",
        "amount24h": "3589.12"
      },
      {
        "trade_pair_name": "DODO/USDT",
        "last_price": "0.1878",
        "highest_bid": "0.1876",
        "lowest_ask": "0.1882",
        "highest_price_24h": "0.1982",
        "lowest_price_24h": "0.1877",
        "volume24h": "379585.2",
        "chg24h": "-0.0244",
        "chg0h": "-0.0398",
        "amount24h": "379585.2"
      }
    ]
}