/v1/ticker
A symbol's 24h ticker
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/mexc-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mexc-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mexc-api/v1/ticker");
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/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 61428.17,
"bid": 61428.16,
"last": 61425.49,
"open": 61781.98,
"time": "2026-06-10T22:56:39.240Z",
"source": "MEXC",
"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
},
"meta": {
"timestamp": "2026-06-10T22:56:40.603Z",
"request_id": "2c0e8e88-6a4f-4c34-9808-7f808a688e7b"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}