Naar de inhoud
GET /v1/markets

Tradable pairs with tick/lot size and notional

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 988,
        "quote": "USDT",
        "source": "AscendEX",
        "markets": [
            {
                "base": "ZETA",
                "quote": "USDT",
                "market": "ZETA/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 1,
                "tick_size": 0.0001,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "GMX",
                "quote": "USDT",
                "market": "GMX/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 0.01,
                "tick_size": 0.01,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "TURBO",
                "quote": "USDT",
                "market": "TURBO/USDT",
                "status": "Normal",
                "max_qty": 10000000000,
                "min_qty": 1.0e-9,
                "lot_size": 1,
                "tick_size": 1.0e-7,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "PEPE3L",
                "quote": "USDT",
                "market": "PEPE3L/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 1,
                "tick_size": 1.0e-8,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "FRAX",
                "quote": "USDT",
                "market": "FRAX/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 1,
                "tick_size": 0.0001,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "FIDA",
                "quote": "USDT",
                "market": "FIDA/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 0.1,
                "tick_size": 1.0e-5,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "ASDP",
                "quote": "USDT",
                "market": "ASDP/USDT",
                "status": "Normal",
                "max_qty": 1000000000,
                "min_qty": 1.0e-9,
                "lot_size": 1,
                "tick_size": 1.0e-5,
                "max_notional": 500000,
                "min_notional": 5
            },
            {
                "base": "JTO3S",
                "quote": "USDT",
                "market": "JTO3S/USDT",
                "status": "Normal",
                "max_qty": 
…