Naar de inhoud
GET /v1/markets

Tradable pairs with base/quote and limits

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/exmo-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 3,
        "quote": "UAH",
        "source": "EXMO",
        "markets": [
            {
                "base": "BTC",
                "quote": "UAH",
                "market": "BTC_UAH",
                "max_price": 20000000,
                "min_price": 1,
                "max_quantity": 1000,
                "min_quantity": 2.0e-5
            },
            {
                "base": "ETH",
                "quote": "UAH",
                "market": "ETH_UAH",
                "max_price": 1000000,
                "min_price": 0.01,
                "max_quantity": 5000,
                "min_quantity": 0.0005
            },
            {
                "base": "USDT",
                "quote": "UAH",
                "market": "USDT_UAH",
                "max_price": 3000,
                "min_price": 1,
                "max_quantity": 500000,
                "min_quantity": 1
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-11T07:45:05.506Z",
        "request_id": "d700fe20-48fa-4a8a-bbbf-5e4c4eb4b4b4"
    },
    "status": "ok",
    "message": "Markets retrieved successfully",
    "success": true
}