/v1/users/status
Online status (up to 50)
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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}