/v1/persons
The staff and creators behind a title
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}