/v1/users/status
Online status (up to 50)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}