Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/bithumb-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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