获取代码

get
/v1/exchange/market/tickers
复制

要求

请求示例

curl --location 'https://api.cryptomus.com/v1/exchange/market/tickers'
复制

回复

响应参数

姓名参数类型定义
currency_pairstring货币对
last_pricestring最新价格
base_volumestring24小时基准交易量
quote_volumestring24小时报价交易量

参数类型

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
复制