Naar de inhoud
GET /v1/stats

Live collection market stats

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/magiceden-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}