获取代码
get
/v1/exchange/market/tickers
要求
请求示例
curl --location 'https://api.cryptomus.com/v1/exchange/market/tickers'
复制回复
响应参数
姓名 | 参数类型 | 定义 |
---|---|---|
currency_pair | string | 货币对 |
last_price | string | 最新价格 |
base_volume | string | 24小时基准交易量 |
quote_volume | string | 24小时报价交易量 |
参数类型
string定义
货币对参数类型
string定义
最新价格参数类型
string定义
24小时基准交易量参数类型
string定义
24小时报价交易量
响应示例
1{
2 "state": 0,
3 "result": [
4 {
5 "currency_pair": "MATIC_USDT",
6 "last_price": "1.03223224",
7 "base_volume": "47.470697983",
8 "quote_volume": "2.31195606"
9 },
10 {
11 "currency_pair": "TRX_BTC",
12 "last_price": "0.00000168",
13 "base_volume": "7.075214591",
14 "quote_volume": "0"
15 }
16 ]
17}
18
复制