Skip to content
GET /v1/meta

Service metadata and endpoint list

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/upbit-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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&quote=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
}