Skip to content

Get All Tickers

Description

Retrieve all trading pair ticker

HTTP Request

  • Get /fapi/v1/market/allTicker

Request Parameters

ParameterTypeRequiredDescription

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/allTicker'

Response Parameters

ParameterTypeDescription
> futuresNameStringFutures name, e.g. "e_btcusdt"
> highString24h high
> lowString24h low
> volString24h transaction volume
> lastStringLast price
> roseStringPrice increase or decrease (24 hours)
> timeStringTimestamp

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": [
        {
            "high": "57879",
            "vol": "0",
            "last": "57879",
            "low": "57879",
            "futuresName": "e_btcusdt",
            "rose": "0",
            "time": "1736764260000"
        },
        ...
    ]
}