Zum Inhalt springen
GET /v1/market

A single market details, spot or derivative

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "type": "spot",
        "source": "Injective",
        "status": null,
        "ticker": "INJ/USDT",
        "market_id": "0xa508cb32923323679f29a032c70342c147c17d0145625922b0ef22e955c844c0",
        "base_denom": "inj",
        "quote_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
        "base_decimals": 18,
        "maker_fee_rate": 0,
        "quote_decimals": 6,
        "taker_fee_rate": 0.05,
        "min_price_tick_size": "0.000000000000001000"
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:31.749Z",
        "request_id": "db132afd-01c4-480d-80b8-31c9c15fc235"
    },
    "status": "ok",
    "message": "Market retrieved successfully",
    "success": true
}