Skip to content

24h Ticker List

24-Hour Ticker List

Endpoint: /v1/futures/24kline_list

Request Parameters

Method: GET

Example

Bash
curl -X GET "https://oapi.websea.com/v1/futures/24kline_list"

Query Parameters

Parameter Required Type Example Description
symbol No string BTC-USDT Trading pair. Multiple symbols can be queried by separating with commas, e.g. BTC-USDT,ETH-USDT. If omitted, data for all trading pairs will be returned.

Response Parameters

Parameter Required Type Example Description
errno Yes int 0 Status code
errmsg Yes string success Status message
result Yes array See example Response data

Result Fields

Parameter Required Type Example Description
id Yes long 0 Trade ID
amount Yes string 100 24-hour traded quantity
count Yes int 2 Number of trades in the last 24 hours
open Yes string 0.432 24-hour open price
close Yes string 0.473 24-hour close price
low Yes string 0.43245 24-hour low price
high Yes string 0.45 24-hour high price
vol Yes string 100 24-hour trading volume

Response Example

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": [
        {
            "symbol": "BTC-USDT",
            "data": {
                "id": 1564383039,
                "amount": "501.58104763207614180517",
                "count": 21030,
                "open": "9510.3854955",
                "close": "9611.293874",
                "low": "9183.037249591129",
                "high": "9722.409967228807",
                "vol": "4758286.23346497644732575715063331978898"
            }
        },
        {
            "symbol": "ETH-USDT",
            "data": {
                "id": 1564383052,
                "amount": "16009.212149527699210913",
                "count": 29174,
                "open": "210.117172",
                "close": "211.8394075",
                "low": "199.2297417116734",
                "high": "215.22023539561525",
                "vol": "3340147.73970105212247360817121760004971"
            }
        },
        {
            "symbol": "EOS-USDT",
            "data": {
                "id": 1564383052,
                "amount": "211869.51477404722383204",
                "count": 44779,
                "open": "4.309048775000001",
                "close": "4.283380825",
                "low": "3.8982515118182044",
                "high": "4.381447583333333",
                "vol": "896966.117596907928217908379228164244991"
            }
        }
    ]
}