/v1/popular
Most-favourited posts of a day
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/popular" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/danbooru-api/v1/popular", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/danbooru-api/v1/popular");
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/popular",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"date": "2026-06-01",
"count": 10,
"posts": [
{
"id": 11500732,
"score": 331,
"artist": [
"vitaminechan"
],
"rating": "s",
"file_url": "https://cdn.donmai.us/original/33/4e/334e19279933437764c2864a2e7cc903.jpg",
"copyright": [
"genshin_impact"
],
"fav_count": 307,
"characters": [
"sandrone_(genshin_impact)"
],
"created_at": "2026-06-01T15:59:21.690-04:00",
"image_width": 1797,
"image_height": 4006
},
{
"id": 11496847,
"score": 327,
"artist": [
"meekohopanes"
],
"rating": "s",
"file_url": "https://cdn.donmai.us/original/db/46/db46b315a721756a514e488def4fc40c.jpg",
"copyright": [
"no_game_no_life"
],
"fav_count": 303,
"characters": [
"shiro_(no_game_no_life)"
],
"created_at": "2026-06-01T03:25:17.562-04:00",
"image_width": 3162,
"image_height": 2093
},
{
"id": 11496472,
"score": 245,
"artist": [
"rkgktomato"
],
"rating": "s",
"file_url": "https://cdn.donmai.us/original/44/5d/445d939532f8cbc40df774932afa7b91.png",
"copyright": [
"mushoku_tensei"
],
"fav_count": 218,
"characters": [
"eris_greyrat"
],
"created_at": "2026-06-01T01:50:24.886-04:00",
"image_width": 2240,
"image_height": 3541
},
{
"id": 11499335,
"score": 243,
"artist": [],
"rating": "s",
"file_url": "https://cdn.donmai.us/original/d4/b6/d4b6c517c5e0326289a77dc468652596.jpg",
"copyright": [
"azur_lane"
],
"fav_count": 226,
"characters": [
"cleopatra_(azur_lane)",
"cleopatra_(stars_and_roses)_(azur_lane)",
"dido_(azur_lane)"
],
"created_at": "2026-06-01T12:01:01.740-04:00",
"image_width": 3627,
"image_height": 2040
},
{
"id": 11500321,
"score": 219,
"artist": [
"secon"
],
"rating": "s",
"file_url": "https://cdn.d
…