Skip to content

Get All Ticker Of The Trading Pairs

Description

Get all ticker of the trading pairs

HTTP Request

  • GET /open/api/get_allticker

Request Parameters

ParameterTypeRequiredDescription

Request Example

http
curl 'https://openapi.100ex.com/open/api/get_allticker'

Response Parameters

ParameterTypeDescription
dateLongit is the current timestamp
trickerList<Object>trading pair ticker list
>symbolStringcoin pair, example: btcusdt
>newCoinFlagIntegeris new coin: 0 no, 1 yes
>amountStringtotal amount
>highStringthe highest price
>volStringtrading volume(the last 24 hours)
>lastDecimalthe latest transaction price
>lowStringthe lowest price
>buyDecimalbuying price
>sellDecimalselling price
>changeStringchange ratio
>roseStringchange ratio
>isShowIntegeris it showed in list: 0 no, 1 yes

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": {
        "date": 1736147696861,
        "ticker": [
            {
                "symbol": "btcusdt",
                "newCoinFlag": 0,
                "amount": "148817273.7558815",
                "high": "99890",
                "vol": "1511.53503",
                "last": 99380.76,
                "low": "97276.8",
                "buy": 99380.76,
                "sell": 99380.77,
                "change": "0.0101736249322524",
                "rose": "0.0101736249322524",
                "isShow": 1
            }
        ]
    },
    "message": null,
    "traceId": null
}

Status Code

CodeDescription
0success
1system error