/v1/users/status
Online status (up to 50)
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/lichess-api/v1/users/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lichess-api/v1/users/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lichess-api/v1/users/status");
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/lichess-api/v1/users/status",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 2,
"users": [
{
"id": "drnykterstein",
"name": "DrNykterstein",
"title": "GM",
"online": false,
"patron": true,
"playing": false,
"streaming": false
},
{
"id": "hikaru",
"name": "Hikaru",
"online": false,
"patron": false,
"playing": false,
"streaming": false
}
]
},
"meta": {
"timestamp": "2026-06-07T16:46:57.680Z",
"request_id": "a49bbd04-b691-4446-b3bf-f9700db7cdfc"
},
"status": "ok",
"message": "Status retrieved successfully",
"success": true
}