get_anime_list
Retrieve a user's anime list from MyAnimeList, filtered by status (e.g., watching or completed) with sorting and pagination options.
Instructions
Fetches an anime list for a user from MyAnimeList.
Args:
username (str): The username of the MyAnimeList user.
status (AnimeStatus): The status of the anime list to fetch. Options: "watching", "completed", "on_hold", "dropped", "plan_to_watch".
sort (AnimeStatusSort, optional): Sort order by "list_score", "list_updated_at", "anime_title" or "anime_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 |