Zum Inhalt springen
GET /v1/markets

Tradable pairs with precision and limits

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/digifinex-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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",
            
…