List of available trading pairs

get
https://api.cryptomus.com/v2/user-api/exchange/markets
COPY

Response

Response parameters

NameDefinition
idTrading pair identifier
symbolTrading pair symbol in the BASE_QUOTE format
baseCurrencyBase currency of the trading pair
quoteCurrencyQuote currency of the trading pair
baseMinSizeMinimum transaction amount in the base currency
quoteMinSizeMinimum transaction amount in the quote currency
baseMaxSizeMaximum transaction amount in the base currency
quoteMaxSizeMaximum transaction amount in the quote currency
basePrecDecimal places precision for the base currency
quotePrecDecimal places precision for the quoted currency

Definition

Trading pair identifier

Definition

Trading pair symbol in the BASE_QUOTE format

Definition

Base currency of the trading pair

Definition

Quote currency of the trading pair

Definition

Minimum transaction amount in the base currency

Definition

Minimum transaction amount in the quote currency

Definition

Maximum transaction amount in the base currency

Definition

Maximum transaction amount in the quote currency

Definition

Decimal places precision for the base currency

Definition

Decimal places precision for the quoted currency

Response example


1{
2  "result": [
3    {
4      "id": "01HSBPVS17CT2GN2FV34K3AMPZ",
5      "symbol": "SHIB_USDT",
6      "baseCurrency": "SHIB",
7      "quoteCurrency": "USDT",
8      "baseMinSize": "100000.00000000",
9      "quoteMinSize": "5.00000000",
10      "baseMaxSize": "5000000000.00000000",
11      "quoteMaxSize": "10000000.00000000",
12      "basePrec": "0",
13      "quotePrec": "8"
14    },
15    {
16      "id": "01HSBPVS17CT2GN2FV34K3AMPC",
17      "symbol": "SOL_USDT",
18      "baseCurrency": "SOL",
19      "quoteCurrency": "USDT",
20      "baseMinSize": "0.01000000",
21      "quoteMinSize": "5.00000000",
22      "baseMaxSize": "500.00000000",
23      "quoteMaxSize": "10000000.00000000",
24      "basePrec": "4",
25      "quotePrec": "4"
26    },
27    ...
28  ]
29}
30      
COPY

Possible codes

404: User or resource not found

422: Invalid input data

500: Internal server error

Possible errors

Example responses:


1{
2  "state": 0,
3  "message": "Standard validation error"
4}
COPY