/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/mexc-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mexc-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mexc-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/mexc-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "MEXC API v3 (api.mexc.com, live)",
"service": "mexc-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/movers": "Biggest 24h gainers or losers among liquid pairs (type=gainers, min_volume=200000, limit=20).",
"GET /v1/ticker": "A symbol's 24h ticker (symbol=BTCUSDT or BTC).",
"GET /v1/tickers": "Top symbols by 24h quote volume (quote=USDT, limit=25)."
},
"description": "Live spot market data from MEXC, a top centralised crypto exchange known for listing the widest range of altcoins and new tokens first. The ticker endpoint returns a symbol's 24h last price, bid/ask, high/low, volume and change; the tickers endpoint returns the top symbols by 24h quote volume; the movers endpoint returns the biggest 24h gainers or losers among liquid pairs — the altcoin-momentum view MEXC is watched for. Live, no key, nothing stored. Distinct centralised-exchange venue, separate from other exchange feeds and from DEX, lending and oracle APIs — this is MEXC's own spot ticker and altcoin-momentum layer.",
"symbol_count": 2415,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:41.063Z",
"request_id": "a22a657e-d855-4af0-9cfb-aa3de9276e61"
},
"status": "ok",
"message": "Meta",
"success": true
}