Get Tickers
get
/v1/exchange/market/tickers
Request
Request example
curl --location 'https://api.cryptomus.com/v1/exchange/market/tickers'
COPYResponse
Response parameters
Name | Parameter type | Definition |
---|---|---|
currency_pair | string | Pair of currency |
last_price | string | Last price |
base_volume | string | Base volume per 24 hours |
quote_volume | string | Quote volume per 24 hours |
Parameter type
stringDefinition
Pair of currencyParameter type
stringDefinition
Last priceParameter type
stringDefinition
Base volume per 24 hoursParameter type
stringDefinition
Quote volume per 24 hours
Response example
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
COPY