/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/boardgames-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/boardgames-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/boardgames-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/boardgames-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"service": "boardgames-api",
"snapshot": "2019-07-08",
"endpoints": {
"GET /v1/game": "Game by name (name=, e.g. Catan) or BGG id (id=).",
"GET /v1/meta": "This document.",
"GET /v1/rank": "Top-ranked games (limit, offset).",
"GET /v1/year": "Games published in a year (year=, e.g. 2017).",
"GET /v1/search": "Search games by name, best-ranked first (q=)."
},
"description": "BoardGameGeek community ranking of 17,000+ board games (2019 snapshot): id, name, year, rank, average rating, Bayesian average, users rated and BGG links. Look up by name or id, search, list the top-ranked games or the games of a year. No key.",
"total_games": 17313
},
"meta": {
"timestamp": "2026-06-09T03:03:51.048Z",
"request_id": "8cfd7f6b-9112-4e69-9787-b4a6e5a6507a"
},
"status": "ok",
"message": "Meta",
"success": true
}