/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/lichess-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lichess-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lichess-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"service": "lichess-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "User profile by username.",
"GET /v1/puzzle": "A puzzle by id.",
"GET /v1/cloud-eval": "Cloud engine evaluation of a FEN.",
"GET /v1/user/games": "A user's recent games (max=).",
"GET /v1/leaderboard": "Top players for a perf (perf=, n=).",
"GET /v1/tournaments": "Current, upcoming and finished tournaments.",
"GET /v1/puzzle/daily": "The daily puzzle.",
"GET /v1/users/status": "Online status for up to 50 users (ids=).",
"GET /v1/user/rating-history": "A user's rating history per variant."
},
"description": "Lichess: user profiles, rating history, online status, performance leaderboards, recent games, cloud engine evaluation, the daily puzzle and puzzles by id, and tournaments. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:58.691Z",
"request_id": "c2aff082-d3f5-4c28-a726-a8a5baa1c779"
},
"status": "ok",
"message": "Meta",
"success": true
}