Skip to content
GET /v1/tickers

All markets for a quote ranked by 24h trade value

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 30,
        "quote": "KRW",
        "source": "Upbit",
        "tickers": [
            {
                "low": 1642,
                "base": "XRP",
                "high": 1710,
                "open": 1707,
                "price": 1653,
                "quote": "KRW",
                "market": "KRW-XRP",
                "low_52w": 1603,
                "high_52w": 4972,
                "timestamp": 1781132190135,
                "prev_close": 1706,
                "change_price": -53,
                "change_24h_pct": -3.1067,
                "trade_value_24h": 152044379854.16,
                "trade_volume_24h": 90675763.840594
            },
            {
                "low": 647,
                "base": "WLD",
                "high": 789,
                "open": 762,
                "price": 661,
                "quote": "KRW",
                "market": "KRW-WLD",
                "low_52w": 340,
                "high_52w": 2906,
                "timestamp": 1781132190131,
                "prev_close": 761,
                "change_price": -100,
                "change_24h_pct": -13.1406,
                "trade_value_24h": 128841694015.5,
                "trade_volume_24h": 176161282.072022
            },
            {
                "low": 91500000,
                "base": "BTC",
                "high": 94470000,
                "open": 92555000,
                "price": 92476000,
                "quote": "KRW",
                "market": "KRW-BTC",
                "low_52w": 89000000,
                "high_52w": 179869000,
                "timestamp": 1781132188258,
                "prev_close": 92555000,
                "change_price": -79000,
                "change_24h_pct": -0.0854,
                "trade_value_24h": 114777091474.75,
                "trade_volume_24h": 1239.773745
            },
            {
                "low": 24.1,
                "base": "SAHARA",
                "high": 30.8,
                "open": 29.3,
                "price": 24.8,
                "quote": "KRW",
                "market": "KRW-SAHARA",
                "low_52w": 19.4,
                "high_52w": 228.2,
                "timestamp": 1781132191082,
                "prev_close": 29.4,
                "change_price": -4.6,
                "change_24h_pct": -15.6463,
                "trade_value_24h": 95546139966.97,
                "trade_volume_24h": 3467435997.898235
            },
            {
                "low": 12.3,
                "base": "STRAX",
                "high": 22.1,
                "open": 12.4,
                "price": 19.9,
                "quote": "KRW",
                "market": "KRW-STRAX",
                "low_52w": 11.8,
                "high_52w": 98.41,
                "timestamp": 1781132187946,
                "prev_close": 12.5,
                "change_price": 7.4,
                "change_24h_pct": 59.2,
                "trade_value_24h": 76141073270.66,
                "trade_
…