Zum Inhalt springen
GET /v1/markets

List every perpetual contract with specs

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 11,
        "venue": "hibachi",
        "markets": [
            {
                "status": "LIVE",
                "symbol": "ETH/USDT-P",
                "tick_size": 0.01,
                "settlement": "USDT",
                "underlying": "ETH",
                "max_leverage": null,
                "min_order_size": 1.0e-9
            },
            {
                "status": "LIVE",
                "symbol": "BTC/USDT-P",
                "tick_size": 0.1,
                "settlement": "USDT",
                "underlying": "BTC",
                "max_leverage": null,
                "min_order_size": 1.0e-10
            },
            {
                "status": "LIVE",
                "symbol": "SOL/USDT-P",
                "tick_size": 0.001,
                "settlement": "USDT",
                "underlying": "SOL",
                "max_leverage": null,
                "min_order_size": 1.0e-8
            },
            {
                "status": "LIVE",
                "symbol": "SUI/USDT-P",
                "tick_size": 1.0e-5,
                "settlement": "USDT",
                "underlying": "SUI",
                "max_leverage": null,
                "min_order_size": 1.0e-6
            },
            {
                "status": "LIVE",
                "symbol": "XRP/USDT-P",
                "tick_size": 1.0e-5,
                "settlement": "USDT",
                "underlying": "XRP",
                "max_leverage": null,
                "min_order_size": 1.0e-6
            },
            {
                "status": "LIVE",
                "symbol": "BNB/USDT-P",
                "tick_size": 0.001,
                "settlement": "USDT",
                "underlying": "BNB",
                "max_leverage": null,
                "min_order_size": 1.0e-8
            },
            {
                "status": "LIVE",
                "symbol": "HYPE/USDT-P",
                "tick_size": 0.0001,
                "settlement": "USDT",
                "underlying": "HYPE",
                "max_leverage": null,
                "min_order_size": 1.0e-7
            },
            {
                "status": "LIVE",
                "symbol": "AUD/USDT-P",
                "tick_size": 1.0e-5,
                "settlement": "USDT",
                "underlying": "AUD",
                "max_leverage": null,
                "min_order_size": 1.0e-5
            },
            {
                "status": "LIVE",
                "symbol": "GBP/USDT-P",
                "tick_size": 1.0e-5,
                "settlement": "USDT",
                "underlying": "GBP",
                "max_leverage": null,
                "min_order_size": 1.0e-5
            },
            {
                "status": "LIVE",
                "symbol": "EUR/USDT-P",
                "tick_size": 1.0e-5,
                "settlement": "USDT",
                "underlying": "EUR",
                "max_leverage": null,
                "min_order_size": 
…