Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/bithumb-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}