Currencies & Pairs
Currencies
GET /api/v3/currencies
public_api.currencies()
Currencies Response
[
{
"short_name": "BTC",
"sign": "BTC"
}, ...
]
Pairs
GET /api/v3/pairs
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| currency1 | string | filter by base currency |
| currency2 | string | filter by quote currency |
public_api.pairs()
Pairs Response
[{
"name": "BTC_USDT",
"currency1": "BTC",
"currency2": "USDT",
"price_precision": 2,
"amount_precision": 8,
"minimum_order_size": 0.001,
"maximum_order_size": 10.0,
"minimum_order_value": 10.0
}, ...]