Zum Inhalt springen
GET /v1/tickers

Top symbols by 24h quote volume

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/mexc-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 25,
        "quote": "USDT",
        "source": "MEXC",
        "tickers": [
            {
                "ask": 61428.17,
                "bid": 61428.16,
                "last": 61425.49,
                "open": 61781.98,
                "time": "2026-06-10T22:56:39.124Z",
                "symbol": "BTCUSDT",
                "low_24h": 60743.7,
                "high_24h": 62852.84,
                "change_24h": -356.49,
                "change_24h_pct": -0.57,
                "base_volume_24h": 7985.2002,
                "quote_volume_24h": 492528284.21
            },
            {
                "ask": 1618.38,
                "bid": 1618.37,
                "last": 1618.37,
                "open": 1642.77,
                "time": "2026-06-10T22:56:39.123Z",
                "symbol": "ETHUSDT",
                "low_24h": 1603.17,
                "high_24h": 1668.23,
                "change_24h": -24.4,
                "change_24h_pct": -1.48,
                "base_volume_24h": 154759.3764,
                "quote_volume_24h": 252712573.7
            },
            {
                "ask": 62.86,
                "bid": 62.85,
                "last": 62.84,
                "open": 65.01,
                "time": "2026-06-10T22:56:39.121Z",
                "symbol": "SOLUSDT",
                "low_24h": 62.34,
                "high_24h": 65.76,
                "change_24h": -2.17,
                "change_24h_pct": -3.33,
                "base_volume_24h": 1170892.609,
                "quote_volume_24h": 75161405.03
            },
            {
                "ask": 1.0007,
                "bid": 1.00069,
                "last": 1.0007,
                "open": 1.00042,
                "time": "2026-06-10T22:56:39.124Z",
                "symbol": "USDCUSDT",
                "low_24h": 1.0003,
                "high_24h": 1.00552,
                "change_24h": 0.00028,
                "change_24h_pct": 0.02,
                "base_volume_24h": 70282412.74,
                "quote_volume_24h": 70325263.8
            },
            {
                "ask": 1.0966,
                "bid": 1.0964,
                "last": 1.0964,
                "open": 1.1363,
                "time": "2026-06-10T22:56:39.122Z",
                "symbol": "XRPUSDT",
                "low_24h": 1.0891,
                "high_24h": 1.1412,
                "change_24h": -0.0399,
                "change_24h_pct": -3.51,
                "base_volume_24h": 38065716.41,
                "quote_volume_24h": 42448082.03
            },
            {
                "ask": 0.08246,
                "bid": 0.08245,
                "last": 0.08247,
                "open": 0.08473,
                "time": "2026-06-10T22:56:39.122Z",
                "symbol": "DOGEUSDT",
                "low_24h": 0.08188,
                "high_24h": 0.08546,
                "change_24h": -0.00226,
                "change_24h_pct": -2.66,
                "base_volume_24h": 18010
…