Vai al contenuto
GET /v1/markets

Tradable pairs with fees and limits

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/coinex-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/coinex-api/v1/markets" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinex-api/v1/markets", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinex-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/coinex-api/v1/markets",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 989,
        "quote": "USDT",
        "source": "CoinEx",
        "markets": [
            {
                "base": "TSLAX",
                "quote": "USDT",
                "market": "TSLAXUSDT",
                "status": "online",
                "min_amount": 0.005,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 2
            },
            {
                "base": "PINGO",
                "quote": "USDT",
                "market": "PINGOUSDT",
                "status": "online",
                "min_amount": 100,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 6
            },
            {
                "base": "ELA",
                "quote": "USDT",
                "market": "ELAUSDT",
                "status": "online",
                "min_amount": 5,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 4
            },
            {
                "base": "SUI",
                "quote": "USDT",
                "market": "SUIUSDT",
                "status": "online",
                "min_amount": 2,
                "maker_fee_pct": 0.2,
                "taker_fee_pct": 0.2,
                "base_precision": 8,
                "quote_precision": 4
            },
            {
                "base": "BTR",
                "quote": "USDT",
                "market": "BTRUSDT",
                "status": "online",
                "min_amount": 50,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 6
            },
            {
                "base": "GHX",
                "quote": "USDT",
                "market": "GHXUSDT",
                "status": "online",
                "min_amount": 200,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 6
            },
            {
                "base": "ORBS",
                "quote": "USDT",
                "market": "ORBSUSDT",
                "status": "online",
                "min_amount": 200,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 6
            },
            {
                "base": "TRADE",
                "quote": "USDT",
                "market": "TRADEUSDT",
                "status": "online",
                "min_amount": 50,
                "maker_fee_pct": 0.3,
                "taker_fee_pct": 0.3,
                "base_precision": 8,
                "quote_precision": 6
            },
            {
                "base": "WAN",
                "quote": 
…