get_manga_details
Fetch detailed manga information from MyAnimeList by ID. Choose specific fields such as score, genres, synopsis, or recommendations.
Instructions
Fetches details of a manga by its ID from MyAnimeList.
Args:
manga_id (int): The ID of the manga to fetch details for.
fields (List[str]): List of fields to include in the response. If None, includes common fields:
id, title, main_picture.
Valid fields: id, title, main_picture, alternative_titles, start_date, end_date, synopsis, mean,
rank, popularity, num_list_users, num_scoring_users, nsfw, created_at, updated_at, media_type,
status, genres, my_list_status, num_volumes, num_chapters, authors, pictures,
background, related_anime, related_manga, recommendations, serialization
Examples:
- To get the score: get_manga_details(30230, fields=["mean"])
- To get similar mangas: get_manga_details(30230, fields=["recommendations"])
- To get genres and synopsis: get_manga_details(30230, fields=["genres", "synopsis"])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| manga_id | Yes | ||
| fields | Yes |