/v1/stats
Live collection market stats
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/magiceden-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/magiceden-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/magiceden-api/v1/stats");
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/magiceden-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Magic Eden",
"symbol": "okay_bears",
"listed_count": 707,
"volume_all_sol": 3479703.62726,
"floor_price_sol": 1.6443,
"avg_price_24hr_sol": 1.852858
},
"meta": {
"timestamp": "2026-06-10T14:01:47.501Z",
"request_id": "6056eef3-9bf5-4b2d-adce-86048ac71516"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}