Naar de inhoud
GET /v1/staff

Staff/voice actor by id or search

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/anilist-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/anilist-api/v1/staff" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/anilist-api/v1/staff", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/anilist-api/v1/staff");
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/anilist-api/v1/staff",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "staff": {
            "id": 96870,
            "age": 85,
            "url": "https://anilist.co/staff/96870",
            "name": "Hayao Miyazaki",
            "image": "https://s4.anilist.co/file/anilistcdn/staff/large/n96870-cM3pfPVIR8RW.png",
            "works": [
                {
                    "id": 199,
                    "type": "ANIME",
                    "title": "Spirited Away"
                },
                {
                    "id": 199,
                    "type": "ANIME",
                    "title": "Spirited Away"
                },
                {
                    "id": 199,
                    "type": "ANIME",
                    "title": "Spirited Away"
                },
                {
                    "id": 431,
                    "type": "ANIME",
                    "title": "Howl‘s Moving Castle"
                },
                {
                    "id": 431,
                    "type": "ANIME",
                    "title": "Howl‘s Moving Castle"
                },
                {
                    "id": 164,
                    "type": "ANIME",
                    "title": "Princess Mononoke"
                },
                {
                    "id": 164,
                    "type": "ANIME",
                    "title": "Princess Mononoke"
                },
                {
                    "id": 164,
                    "type": "ANIME",
                    "title": "Princess Mononoke"
                }
            ],
            "gender": "Male",
            "native": "宮崎駿",
            "favourites": 11985,
            "description": "__Residency:__ Tokorozawa City, Saitama Prefecture, Japan\n__Graduated:__ Gakushuin University (Department of Economics)\n\n__Introduction:__\nHayao Miyazaki is a Japanese animator, director, script/screenwriter, author, mangaka and co-founder of Studio Ghibli. He is the second of four brothers, and was born in the town of Akebono-cho, part of Tokyo's Bunkyou Ward. He is best known for his international fame as a masterful storyteller and as a maker of astonishing animated feature films, and he is widely regarded as one of the most accomplished filmmakers in the history of animation.\n\nMiyazaki's works are characterized by the recurrence of themes such as humanity's relationship with nature and technology, the wholesomeness of natural and traditional patterns of living, the importance of art and craftsmanship, and the difficulty of maintaining a pacifist ethic in a violent world. The protagonists of his films are often strong girls or young women, and several of his films present morally ambiguous antagonists with redeeming qualities. Miyazaki's works have been highly praised and awarded; he was named a Person of Cultural Merit for outstanding cultural contributions in November 2012, and received the Academy Honorary Award for his impact on animation and cinema in November 2014, as well as having won two Oscars for Best An
…