/v1/meta
Spec
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/ascendex-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ascendex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ascendex-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Markets are BASE/QUOTE (e.g. BTC/USDT); BTC_USDT is also accepted. The ticker reports base volume; quote_volume_24h_approx = base volume x last price.",
"source": "AscendEX API (ascendex.com/api/pro/v1, live)",
"service": "ascendex-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USDT, limit=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one market (market=BTC_USDT or symbol=BTC"e=USDT).",
"GET /v1/markets": "Tradable pairs with tick/lot size and minimum notional (quote=USDT optional).",
"GET /v1/tickers": "All spot markets for a quote ranked by 24h volume (quote=USDT, limit=50)."
},
"description": "Live spot market data from AscendEX (formerly BitMax), a global crypto exchange. The ticker endpoint returns a market's last price, open, 24h high/low, 24h change, best bid/ask and volume; the tickers endpoint ranks every spot market for a quote currency by 24h volume; the markets endpoint lists tradable pairs with tick/lot size and minimum notional; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
"market_count": 558,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:06.802Z",
"request_id": "878e621e-13e4-4940-a3b3-ff8b6f802d72"
},
"status": "ok",
"message": "Meta",
"success": true
}