/v1/markets
Tradable pairs with precision and limits
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/digifinex-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digifinex-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digifinex-api/v1/markets");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/digifinex-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 692,
"quote": "USDT",
"source": "DigiFinex",
"markets": [
{
"base": "BTC",
"quote": "USDT",
"market": "BTC_USDT",
"min_amount": 2,
"min_volume": 1.0e-7,
"price_precision": 2,
"volume_precision": 7
},
{
"base": "ETH",
"quote": "USDT",
"market": "ETH_USDT",
"min_amount": 1.2,
"min_volume": 0.0006,
"price_precision": 2,
"volume_precision": 4
},
{
"base": "DFT",
"quote": "USDT",
"market": "DFT_USDT",
"min_amount": 1,
"min_volume": 2,
"price_precision": 6,
"volume_precision": 2
},
{
"base": "LTC",
"quote": "USDT",
"market": "LTC_USDT",
"min_amount": 2,
"min_volume": 0.01,
"price_precision": 2,
"volume_precision": 3
},
{
"base": "XRP",
"quote": "USDT",
"market": "XRP_USDT",
"min_amount": 2,
"min_volume": 1,
"price_precision": 5,
"volume_precision": 0
},
{
"base": "QTUM",
"quote": "USDT",
"market": "QTUM_USDT",
"min_amount": 2,
"min_volume": 0.2,
"price_precision": 4,
"volume_precision": 1
},
{
"base": "ZIL",
"quote": "USDT",
"market": "ZIL_USDT",
"min_amount": 0,
"min_volume": 1,
"price_precision": 6,
"volume_precision": 1
},
{
"base": "IOST",
"quote": "USDT",
"market": "IOST_USDT",
"min_amount": 0,
"min_volume": 1,
"price_precision": 6,
"volume_precision": 4
},
{
"base": "ZRX",
"quote": "USDT",
"market": "ZRX_USDT",
"min_amount": 0,
"min_volume": 1,
"price_precision": 4,
"volume_precision": 2
},
{
"base": "BASED",
"quote": "USDT",
"market": "BASED_USDT",
"min_amount": 2,
"min_volume": 0.1,
"price_precision": 4,
"volume_precision": 1
},
{
"base": "ETC",
"quote": "USDT",
"market": "ETC_USDT",
…