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/bithumb-api

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "Markets are COIN_PAYMENT (BTC_KRW, ETH_BTC). payment_currency is KRW (default) or BTC. quote_volume_24h is the 24h turnover in the payment currency; change_24h_pct is the 24h percentage move.",
        "source": "Bithumb public API (api.bithumb.com/public, live)",
        "service": "bithumb-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_KRW, limit=20, max 30).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_KRW or coin=BTC&payment=KRW).",
            "GET /v1/markets": "Tradable coins for a payment currency (payment=KRW).",
            "GET /v1/tickers": "All markets for a payment currency ranked by 24h turnover (payment=KRW, limit=50)."
        },
        "description": "Live spot market data from Bithumb, South Korea's major crypto exchange. The ticker endpoint returns a market's last price, 24h high/low/open, 24h change and base/quote volume; the tickers endpoint ranks every market for a payment currency (KRW or BTC) by 24h turnover; the markets endpoint lists tradable coins; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct Korean-won venue — useful for the 'kimchi premium' and KRW price discovery — separate from the USDT-quoted exchange feeds.",
        "upstream_status": "ok",
        "market_count_krw": 461
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:43.007Z",
        "request_id": "e6b74ae8-7a8a-4dc0-a502-6b0c69725774"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}