Get Tickers

get
/v1/exchange/market/tickers
COPY

Request

Request example

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

Response

Response parameters

NameParameter typeDefinition
currency_pairstringPair of currency
last_pricestringLast price
base_volumestringBase volume per 24 hours
quote_volumestringQuote volume per 24 hours

Parameter type

string

Definition

Pair of currency

Parameter type

string

Definition

Last price

Parameter type

string

Definition

Base volume per 24 hours

Parameter type

string

Definition

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