Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/danbooru-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}