/v1/market
One market's full state by ticker
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/dydx-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dydx-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dydx-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/dydx-api/v1/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "dYdX",
"status": "ACTIVE",
"ticker": "BTC-USD",
"trades_24h": 26484,
"market_type": "CROSS",
"oracle_price": 61360.97617,
"open_interest": 470.5312,
"volume_24h_usd": 94598102.89,
"funding_apr_pct": 56.198,
"price_change_24h": -321.83505,
"open_interest_usd": 28872253.75,
"price_change_24h_pct": -0.5218,
"initial_margin_fraction": 0.02,
"next_funding_rate_hourly": 6.4153e-5,
"maintenance_margin_fraction": 0.012
},
"meta": {
"timestamp": "2026-06-10T22:57:57.009Z",
"request_id": "ad25a911-ef85-4296-8017-8632b1c56bcb"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}