Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/quidax-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "Pass markets as BTC_NGN or BTCNGN (concatenated). base/quote come from /markets. The default quote is the Nigerian naira (NGN). quote_volume_24h is derived as vol × last; the 24h change is from the day's open.",
        "source": "Quidax public API (app.quidax.io/api/v1, live)",
        "service": "quidax-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_NGN or base=BTC&quote=NGN).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=NGN optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=NGN, limit=50)."
        },
        "description": "Live spot market data from Quidax, a leading Nigerian crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h open/high/low, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency (NGN, USDT or USD) by 24h turnover; the markets endpoint lists tradable pairs with base/quote. Live, no key, nothing stored. A distinct Nigerian-naira venue for NGN price discovery, separate from the USD/USDT-quoted exchange feeds. Ticker-only (Quidax exposes no public order book); best bid/ask are in the ticker.",
        "market_count": 49,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:45:08.293Z",
        "request_id": "c35be400-aebc-4a3d-bf0f-d3427ef2d8a3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}