Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Dec 2, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 2
GetEpisodeList
Marco Dal Zovo edited this page Feb 7, 2022
·
2 revisions
Returns a list of Episode objects filtered.
| Name | Type | Summary |
|---|---|---|
| filter | EpisodeFilter | The request's filter |
| Name | Type | Optional | Summary |
|---|---|---|---|
| AnimeId | Int64 | Yes | The episode's anime to search |
| Number | Int32 | Yes | The episode's progressive number to search |
| IsDub | Boolean | Yes | If true, will search for dubbed episodes |
| Locale | String | Yes | The episode's i18n to search |
EpisodeFilterfilter=newEpisodeFilter(){AnimeId=1,IsDub=true,Locale="en",Sort=newDictionary<string,SortDirectionEnum>(){{"number",SortDirectionEnum.DESCENDING}}};varresult=awaitAniAPI.Instance.GetEpisodeList(filter);