/v1/persons
The staff and creators behind a title
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bangumi-api/v1/persons" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bangumi-api/v1/persons", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bangumi-api/v1/persons");
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/bangumi-api/v1/persons",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 6,
"staff": [
{
"id": 17325,
"name": "五十嵐孝司",
"career": [
"producer"
],
"relation": "制作人"
},
{
"id": 80632,
"name": "廣岡政樹",
"career": [
"illustrator"
],
"relation": "人物设定"
},
{
"id": 18331,
"name": "山根ミチル",
"career": [
"producer",
"artist"
],
"relation": "音乐"
},
{
"id": 32598,
"name": "シナリオ工房 月光",
"career": [
"writer",
"producer"
],
"relation": "剧本"
},
{
"id": 747,
"name": "KONAMI",
"career": [
"producer"
],
"relation": "发行"
},
{
"id": 747,
"name": "KONAMI",
"career": [
"producer"
],
"relation": "开发"
}
],
"source": "Bangumi public v0 API (api.bgm.tv/v0/subjects/<id>/persons), keyless",
"subject_id": 25
},
"meta": {
"timestamp": "2026-06-13T13:47:56.001Z",
"request_id": "fbaf7a6e-60c6-4f95-92e7-a8da70b91067"
},
"status": "ok",
"message": "Persons retrieved successfully",
"success": true
}