/v1/stats
TETR.IO live global stats
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}