get_manga_list
Retrieve a user's manga list from MyAnimeList by username and status, with optional sorting and pagination.
Instructions
Fetches a manga list for a user from MyAnimeList.
Args:
username (str): The username of the MyAnimeList user.
status (MangaStatus): The status of the manga list to fetch. Options: "reading", "completed", "on_hold", "dropped", "plan_to_read".
sort (MangaStatusSort, optional): Sort order by "list_score", "list_updated_at", "manga_title" or "manga_start_date". Default is None.
limit (int): The number of results to return (default is 10 and max 500).
offset (int): The offset for pagination (default is 0).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | ||
| status | Yes | ||
| sort | No | ||
| limit | No | ||
| offset | No |