Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/valr-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Pass markets as BTC_ZAR or BTCZAR. Symbols are concatenated; base/quote come from /pairs. The default quote is the South African rand (ZAR). quote_volume_24h is in the quote currency; the 24h change is changeFromPrevious / previousClosePrice.",
        "source": "VALR public API (api.valr.com/v1/public, live)",
        "service": "valr-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_ZAR, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_ZAR or base=BTC&quote=ZAR).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=ZAR optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=ZAR, limit=50)."
        },
        "description": "Live spot market data from VALR, South Africa's leading crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency (ZAR, USDC, USDT or BTC) by 24h turnover; the markets endpoint lists tradable pairs with base/quote; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct South-African-rand venue for ZAR price discovery, separate from the USD/USDT-quoted exchange feeds.",
        "market_count": 406,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:31.102Z",
        "request_id": "860e5d68-4ee9-48cc-87f2-a77da4164e9e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}