Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "source": "Coinbase Exchange public API (live)",
        "service": "coinbase-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/stats": "A pair's 24h open/high/low/last + 24h/30d volume + 24h % change (pair=BTC-USD).",
            "GET /v1/ticker": "A pair's live ticker (pair=BTC-USD): price, bid/ask, spread, 24h volume.",
            "GET /v1/candles": "Recent OHLC candles (pair=BTC-USD; granularity=60..86400 seconds).",
            "GET /v1/products": "All Coinbase trading pairs (quote=USD to filter, status=all to include offline).",
            "GET /v1/orderbook": "Top of book (pair=BTC-USD; level=1 best, level=2 aggregated with depth)."
        },
        "description": "Live market data from Coinbase's public Exchange API: ~800 trading pairs with increments, minimum order size and status; a pair's live ticker (price, best bid/ask, spread, 24h volume); rolling 24h open/high/low/last with 24h and 30d volume and 24h % change; the top of the order book at level 1 or 2 with the spread; and recent OHLC candles at a chosen granularity (1m to 1d). Live venue data, no key, nothing stored. Distinct from Binance and Kraken venue APIs and from aggregated price feeds — this is Coinbase's own order book and tape.",
        "upstream_status": "ok",
        "products_available": 824
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:34.149Z",
        "request_id": "b1299361-69ae-4a97-be99-e5373a79f4e9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}