Get person details
get_personRetrieve a person's full MyAnimeList profile by mal_id: biography, anime/manga staff credits, and voiced roles. Optionally filter adult content or fetch the complete staff credit list.
Instructions
Get full details for one person by mal_id: bio, their anime/manga staff-credit lists, and their voiced roles. Staff credits are capped at the first 200 (only an extreme outlier hits that — a prolific sound director can have 500+; a well-known director sits under 100); when the cap bites, the response says so via credits_truncated plus total_anime_credits/total_manga_credits, and full_credits: true returns every entry. voice_roles is separately capped at the first 50, in whatever order the upstream API returns them (not necessarily their most notable roles). Obtain the mal_id from search_people, or from get_character's voice_actors (which include each actor's mal_id — get_anime_characters' voice_actors are names only, with no id). sfw/sfw_strict filter NSFW/adult-adjacent titles out of the person's own anime/manga credit lists (verified live) rather than affecting the person themselves.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | MyAnimeList numeric ID. | |
| sfw | No | If true, exclude adult/explicit-rated entries (R+ Mild Nudity and up). Defaults to false (no filtering). Note: this alone still allows mainstream, safely-rated shows tagged with the Ecchi genre (fanservice) through — use `sfw_strict` to also exclude those. | |
| sfw_strict | No | If true, exclude adult/explicit-rated entries AND anything tagged with the Ecchi genre, even otherwise-mainstream/safely-rated shows. Stricter than `sfw` alone. Defaults to false. | |
| full_credits | No | If true, return every staff credit instead of the first 200. Only needed for the handful of people whose response reports `credits_truncated`. Defaults to false. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | ||
| name | No | ||
| about | No | ||
| anime | No | ||
| manga | No | ||
| mal_id | Yes | ||
| birthday | No | ||
| favorites | No | ||
| image_url | No | ||
| given_name | No | ||
| family_name | No | ||
| voice_roles | No | ||
| alternate_names | No | ||
| credits_truncated | No | ||
| total_anime_credits | No | ||
| total_manga_credits | No |