Skip to content

Ticker

Ticker

Http Request

GET
/api/usdt/instruments/ticker_one

Request Frequency Restriction:

  • 10times / 1second

Request Parameters

Name Type Mandatory Description
instrument_id string YES Contract abbreviation, such as BTC, ETH, BCH, BSV, etc.

Response fields description

Name Type Description
lowest_ask_price string best selling price
lowest_ask_volume string best selling quantity
highest_bid_price string best price
highest_bid_volume string best quantity
last_price string latest price
mark_price string mark price
highest_price_24h string 24h highest price
lowest_price_24h string 24h lowest price
volume_24h string 24h volume (USDT)
chg24h string 24h change
chg0h string 0h change
timestamp string Timestamp, UTC international time
contract_code string contract name

Response

{
    "code":200,
    "message":null,
    "data":{
        "lowest_ask_price":"28277.1",
        "lowest_ask_volume":"4836.0",
        "highest_bid_price":"28276.9",
        "highest_bid_volume":"4720.0",
        "last_price":"28277.0",
        "mark_price":"28277.0",
        "highest_price_24h":"28530.0",
        "lowest_price_24h":"27798.6",
        "volume_24h":"4215143.0",
        "timestamp":1681111608714,
        "chg24h":"0.0134",
        "chg0h":"-0.0015",
        "contract_code":"BTC-SWAP"
    }
}