Skip to content

24-hour Product Market Data

24-Hour Product Market Data

Address/openApi/market/24hr

Receive Parameters

Submission method: GET

Example

curl -d /openApi/market/24hr

Submission Parameters

Parameter Name Required Type Example Description
symbol No string BTC-USDT Trading pair, pass the parameter separated by ",", to query multiple trading pair 24-hour market data, e.g., BTC-USDT,ETH-USDT. If no parameter is passed, details of all trading pairs are obtained

Return Parameters

Parameter Name Required Type Example Description
errno Yes int 0 Status Code
errmsg Yes success success Status Message
result Yes array See example Return result

Explanation of Result

Parameter Name Mandatory Type Example Description
symbol Yes string BTC-USDT Pair Name
base_ccy Yes string BTC Base currency for trading
quote_ccy Yes string USDT Quote currency type
last_price Yes string 38987 Latest transaction price
base_vol Yes string 100 24-hour trading volume, base currency
quote_vol Yes string 10000 24-hour trading volume, quoted currency
bid Yes string 37990 Bid price
ask Yes string 38000 Sell 1 Price
high Yes string 40000 24-hour highest price
low Yes string 37000 24-hour lowest price
product_type Yes string futures Product Type, futures means perpetual contract
open_interest Yes string 19999 Total open interest
open_interest_usd Yes string 19999 Total open interest settled in USD
index_price Yes string 38000 Index price
funding_rate Yes string 23 Funding Settlement Rate
next_funding_rate_times Yes int 1701417600 Next funding fee settlement time

Response Example

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": [
        {
            "symbol": "BTC-USDT",
            "base_ccy": "BTC",
            "quote_ccy": "USDT",
            "last_price": "38987",
            "base_vol": "100",
            "quote_vol": "10000",
            "bid": "37990",
            "ask": "38000",
            "high": "40000",
            "low": "37000",
            "product_type": "futures",
            "open_interest": "19999",
            "open_interest_usd": "19999",
            "index_price": "38000",
            "funding_rate": "23",
            "next_funding_rate_times": 1701417600
        }
    ]
}