Get All Ticker Of The Trading Pairs
Description
Get all ticker of the trading pairs
HTTP Request
- GET /open/api/get_allticker
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://openapi.100ex.com/open/api/get_allticker'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| date | Long | it is the current timestamp |
| tricker | List<Object> | trading pair ticker list |
| >symbol | String | coin pair, example: btcusdt |
| >newCoinFlag | Integer | is new coin: 0 no, 1 yes |
| >amount | String | total amount |
| >high | String | the highest price |
| >vol | String | trading volume(the last 24 hours) |
| >last | Decimal | the latest transaction price |
| >low | String | the lowest price |
| >buy | Decimal | buying price |
| >sell | Decimal | selling price |
| >change | String | change ratio |
| >rose | String | change ratio |
| >isShow | Integer | is 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
| Code | Description |
|---|---|
| 0 | success |
| 1 | system error |
