Light Mode
Get All Tickers
GET
/api/v1/market/allTickers:::info[Description]
Request market tickers for all the trading pairs in the market (including 24h volume); takes a snapshot every 2 seconds.
On the rare occasion that we change the currency name, if you still want the changed symbol name, you can use the symbolName field instead of the symbol field via “Get Symbols List” endpoint.
:::
Request
None
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
required
data
object
required
time
integer <int64>
required
timestamp
ticker
array [object {18}]
required
Example
{
"code": "200000",
"data": {
"time": 1729173207043,
"ticker": [
{
"symbol": "BTC-USDT",
"symbolName": "BTC-USDT",
"buy": "67192.5",
"bestBidSize": "0.000025",
"sell": "67192.6",
"bestAskSize": "1.24949204",
"changeRate": "-0.0014",
"changePrice": "-98.5",
"high": "68321.4",
"low": "66683.3",
"vol": "1836.03034612",
"volValue": "124068431.06726933",
"last": "67193",
"averagePrice": "67281.21437289",
"takerFeeRate": "0.001",
"makerFeeRate": "0.001",
"takerCoefficient": "1",
"makerCoefficient": "1"
}
]
}
}
Last modified: 18 days ago