/v1/artist
An artist's profile and off-site links
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/danbooru-api/v1/artist" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/danbooru-api/v1/artist", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/danbooru-api/v1/artist");
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/artist",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": 87521,
"name": "wlop",
"urls": [
"https://azz.net/wlop",
"https://www.weibo.com/u/1804342520",
"https://wlopwangling.tumblr.com",
"https://www.artstation.com/wlop",
"https://wlop9.lofter.com",
"https://wlopwl.lofter.com",
"http://drawcrowd.com/zydnq5010f7f7",
"https://www.deviantart.com/wlop",
"https://www.pixiv.net/stacc/wlop",
"https://www.youtube.com/channel/UCPa7bvOg_r54NaQb7GJA9Eg",
"https://pawoo.net/@wlop",
"https://www.facebook.com/wlopart",
"https://pawoo.net/web/accounts/479386",
"https://vimeo.com/wlop",
"https://tapastic.com/series/GhostBlade",
"https://wlop.gumroad.com",
"https://foundation.app/@wlop",
"https://www.patreon.com/wlop",
"https://sketch.pixiv.net/@wlop",
"https://www.weibo.com/wlop",
"https://www.pixiv.net/users/2188232",
"https://space.bilibili.com/26633150",
"https://www.patreon.com/user?u=470718",
"https://7412416394628.gumroad.com",
"https://www.lofter.com/mentionredirect.do?blogId=486764471"
],
"source": "Danbooru",
"is_banned": false,
"created_at": "2012-11-09T00:55:56.560-05:00",
"group_name": null,
"other_names": [
"wang_ling",
"wlopart",
"wlopwangling",
"[email protected]"
]
},
"meta": {
"timestamp": "2026-06-13T14:04:42.359Z",
"request_id": "966cee0d-a89f-4408-ba55-c72015068e27"
},
"status": "ok",
"message": "Artist retrieved successfully",
"success": true
}