/v1/meta
Service metadata and endpoint list
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/upbit-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/upbit-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/upbit-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/upbit-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Upbit API (api.upbit.com, live)",
"service": "upbit-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one or more markets (market=KRW-BTC or symbol=BTC"e=KRW; comma-separated markets allowed).",
"GET /v1/candles": "Daily/weekly/monthly OHLC (market=KRW-BTC, unit=days, count=30).",
"GET /v1/markets": "List trading pairs with Korean/English names (quote=KRW optional, limit=200).",
"GET /v1/tickers": "All markets for a quote ranked by 24h trade value (quote=KRW, limit=30)."
},
"description": "Live spot market data from Upbit, South Korea's largest crypto exchange and one of the highest-volume venues in the world. The ticker endpoint returns a market's price, 24h change, high/low, 24h volume and value and 52-week range (in KRW, BTC or USDT); the tickers endpoint ranks every market for a quote currency by 24h trade value; the markets endpoint lists trading pairs with Korean and English names; the candles endpoint returns daily/weekly/monthly OHLC. Live, no key, nothing stored. Upbit's KRW prices are the reference for the kimchi premium — a distinct Korean-market venue, separate from other exchange feeds.",
"market_count": 748,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:31.309Z",
"request_id": "a0a8d3bd-4a3d-4ed7-9388-50195fbdb83a"
},
"status": "ok",
"message": "Meta",
"success": true
}