/v1/meta
Spec
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/vndb-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vndb-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vndb-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/vndb-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": "vndb-api",
"endpoints": {
"GET /v1/vn": "Visual novel detail by id (e.g. v2002).",
"GET /v1/meta": "This document.",
"GET /v1/stats": "Database statistics.",
"GET /v1/producer": "Producer detail by id (e.g. p37).",
"GET /v1/character": "Character detail by id (e.g. c44).",
"GET /v1/search/vn": "Search visual novels.",
"GET /v1/search/producers": "Search producers/developers.",
"GET /v1/search/characters": "Search characters."
},
"description": "VNDB: search and look up visual novels, characters and producers/developers, plus database stats. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:52.521Z",
"request_id": "1fe47d84-fe39-47d2-bd0b-27dbb4467020"
},
"status": "ok",
"message": "Meta",
"success": true
}