/v1/meta
Service metadata
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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}