/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/danbooru-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/danbooru-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/danbooru-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/danbooru-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": {
"source": "Danbooru public API (live, safe ratings only)",
"service": "danbooru-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "Search curated post collections by name (q=touhou).",
"GET /v1/post": "A single post in full (id=11556356).",
"GET /v1/tags": "Search the tag database with post counts (q=cat_girl, limit).",
"GET /v1/wiki": "The wiki page that defines a tag (title=cat_girl).",
"GET /v1/posts": "Search anime-art posts by tag (tags=cat_girl, max 2 tags, limit).",
"GET /v1/artist": "An artist's profile and off-site links (name=wlop).",
"GET /v1/popular": "Most-favourited posts of a day (date=YYYY-MM-DD, scale=day|week|month)."
},
"description": "Live post, tag and ranking data from Danbooru, the large community anime-art imageboard, via its public API. Danbooru is built around a deep tag taxonomy (artist, character, copyright/source, general). The posts endpoint searches images by tag and returns each post's score, favourite count, rating, dimensions and split tag sets; the post endpoint returns a single post in full; the tags endpoint searches the tag database, returning each tag's post count and category; the popular endpoint returns the most-favourited posts of a given day. Live, no key, nothing stored; to keep results work-safe only general- and sensitive-rated posts are returned. Distinct from 4chan and other imageboard APIs — this is Danbooru's tagged-art database and its rankings.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T14:04:42.150Z",
"request_id": "09393c4c-d9e1-42e1-a726-aa87dd325cb1"
},
"status": "ok",
"message": "Meta",
"success": true
}