/v1/post
A single post in full
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/danbooru-api/v1/post" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/danbooru-api/v1/post", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/danbooru-api/v1/post");
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/post",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": 11556356,
"score": 0,
"artist": [
"mofinngram"
],
"rating": "g",
"source": "Danbooru",
"file_url": "https://cdn.donmai.us/original/ac/e2/ace21bcd9b493c815fb9d8c2431d4a7c.jpg",
"up_score": 0,
"copyright": [
"pokemon"
],
"fav_count": 0,
"characters": [
"conkeldurr",
"gurdurr",
"timburr"
],
"created_at": "2026-06-10T04:31:01.852-04:00",
"down_score": 0,
"image_width": 1440,
"general_tags": [
"alternate_color",
"black_eyes",
"bright_pupils",
"carrying",
"closed_mouth",
"evolutionary_line",
"holding",
"muscular",
"open_mouth",
"pokemon_(creature)",
"pokemon_focus",
"red_nose",
"shiny_and_normal",
"shiny_pokemon",
"steel_beam",
"veins",
"white_pupils",
"wooden_beam"
],
"image_height": 1800
},
"meta": {
"timestamp": "2026-06-10T14:02:17.312Z",
"request_id": "e9b94dd9-34a9-46f1-a06f-a793603f8a12"
},
"status": "ok",
"message": "Post retrieved successfully",
"success": true
}