Aller au contenu
GET /v1/markets

Tradable pairs with tick/lot size and notional

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/ascendex-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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": 
…