/v1/cloud-eval
Cloud engine evaluation
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/lichess-api/v1/cloud-eval" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lichess-api/v1/cloud-eval", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lichess-api/v1/cloud-eval");
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/cloud-eval",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"fen": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"pvs": [
{
"cp": 19,
"moves": "e2e4 e7e5 g1f3 b8c6 f1c4 g8f6 d2d3 f8c5 e1h1 d7d6"
}
],
"depth": 75,
"knodes": 695524
},
"meta": {
"timestamp": "2026-06-07T16:46:58.279Z",
"request_id": "bb49781d-5f44-46b8-b341-401d1561aedf"
},
"status": "ok",
"message": "Evaluation retrieved successfully",
"success": true
}