Aller au contenu
GET /v1/wiki

The wiki page that defines a tag

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/danbooru-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/danbooru-api/v1/wiki" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/danbooru-api/v1/wiki", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/danbooru-api/v1/wiki");
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/wiki",
    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": {
        "body": "A girl with real [[cat]]-like features, such as [[cat ears]] or a [[cat tail]].\r\n\r\nDo not use for characters wearing [[fake animal ears]] or a [[fake tail]].\r\n\r\nh4. Examples \r\n\r\n* !post #9092056\r\n* !post #10285031\r\n* !post #9290747\r\n\r\nh4. See also\r\n\r\n* [[cat boy]]\r\n* [[dog girl]]\r\n* [[fox girl]]\r\n* [[wolf girl]]\r\n* [[rabbit girl]]\r\n* [[reindeer girl]]",
        "title": "cat_girl",
        "source": "Danbooru",
        "is_locked": false,
        "created_at": "2014-08-09T20:14:50.477-04:00",
        "updated_at": "2026-02-16T08:00:47.036-05:00",
        "other_names": [
            "猫娘",
            "キャットガール",
            "猫系女子",
            "猫耳娘",
            "貓人",
            "猫人",
            "貓娘",
            "ねこ娘",
            "ネコ娘"
        ]
    },
    "meta": {
        "timestamp": "2026-06-13T14:04:41.942Z",
        "request_id": "4f464371-158e-46ba-90ac-db2c3fc66dd0"
    },
    "status": "ok",
    "message": "Wiki retrieved successfully",
    "success": true
}