/v1/stats
TETR.IO live global stats
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tetrio-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tetrio-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tetrio-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/tetrio-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "TETR.IO",
"records_set": 182900394,
"total_users": 9919451,
"games_played": 1028245047,
"ranked_players": 39362,
"total_accounts": 25846983,
"anonymous_users": 6599247
},
"meta": {
"timestamp": "2026-06-10T14:02:24.090Z",
"request_id": "a8855a5d-f17b-4830-906c-c3b4fa304cf6"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}