/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}