Skip to content

Get A Trading Pair Ticker

Description

Get a trading pair ticker

HTTP Request

  • GET /open/api/get_ticker

Request Parameters

ParameterTypeRequiredDescription
symbolStringYescoin pair, example: btcusdt

Request Example

http
curl 'https://openapi.100ex.com/open/api/get_ticker?symbol=btcusdt'

Response Parameters

ParameterTypeDescription
amountStringtotal amount
highStringthe highest price
volStringtrading volume(the last 24 hours)
lastDecimalthe latest transaction price
lowStringthe lowest price
buyDecimalbuying price
sellDecimalselling price
roseStringchange ratio
timeLongthe time of record

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": {
        "amount": "150111936.8320605",
        "high": "99890",
        "vol": "1525.95677",
        "last": 99312.9200000000000000,
        "low": "55",
        "buy": 99312.91,
        "sell": 99312.92,
        "rose": "0.0100076396680202",
        "time": 1736149020000
    },
    "message": null,
    "traceId": null
}

Status Code

CodeDescription
0success
1system error