/v1/meta
Service metadata and endpoint list
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/luno-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/luno-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/luno-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/luno-api/v1/meta",
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": {
"note": "Pairs are uppercase with no separator (e.g. XBTZAR). XBT = Bitcoin.",
"source": "Luno API (api.luno.com, live)",
"service": "luno-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one pair (pair=XBTZAR or symbol=XBT"e=ZAR; BTC maps to XBT).",
"GET /v1/markets": "Market specs — trading limits, scales and status (quote=ZAR optional).",
"GET /v1/tickers": "All pairs for a quote ranked by 24h volume (quote=ZAR, limit=50).",
"GET /v1/orderbook": "Live market depth — top bids and asks (pair=XBTZAR, limit=20)."
},
"pair_count": 143,
"description": "Live spot market data from Luno, the leading crypto exchange across Africa and emerging markets (South Africa, Nigeria, Uganda, Zambia, Malaysia, Indonesia). The ticker endpoint returns a pair's best bid/ask, last trade and 24h volume (in rand, naira, shilling, ringgit, rupiah and more); the tickers endpoint ranks every pair for a quote currency by 24h volume; the orderbook endpoint returns live market depth; the markets endpoint lists each market's trading limits, price/volume scales and status. Live, no key, nothing stored. A distinct African / emerging-markets venue with local-fiat pricing, separate from other exchange feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:21.597Z",
"request_id": "f4cf970d-c048-4835-89d4-475d99ecaef8"
},
"status": "ok",
"message": "Meta",
"success": true
}