An open API service indexing awesome lists of open source software.

https://github.com/mahmudindev/openapi-jikan-python

Python-based generated Jikan (MyAnimeList) OpenAPI client (Unofficial).
https://github.com/mahmudindev/openapi-jikan-python

client comics jikan-api myanimelist openapi sdk

Last synced: 5 months ago
JSON representation

Python-based generated Jikan (MyAnimeList) OpenAPI client (Unofficial).

Awesome Lists containing this project

README

          

# jikan-openapi
[Jikan](https://jikan.moe) is an **Unofficial** MyAnimeList API.
It scrapes the website to satisfy the need for a complete API - which MyAnimeList lacks.

# Information

⚡ Jikan is powered by its awesome backers - 🙏 [Become a backer](https://www.patreon.com/jikan)

## Rate Limiting

| Duration | Requests |
|----|----|
| Daily | **Unlimited** |
| Per Minute | 60 requests |
| Per Second | 3 requests |

Note: It's still possible to get rate limited from MyAnimeList.net instead.

## JSON Notes
- Any property (except arrays or objects) whose value does not exist or is undetermined, will be `null`.
- Any array or object property whose value does not exist or is undetermined, will be empty.
- Any `score` property whose value does not exist or is undetermined, will be `0`.
- All dates and timestamps are returned in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) format and in UTC timezone

## Caching
By **CACHING**, we refer to the data parsed from MyAnimeList which is stored temporarily on our servers to provide better API performance.

All requests are cached for **24 hours**.

The following response headers will detail cache information.

| Header | Remarks |
| ---- | ---- |
| `Expires` | Cache expiry date |
| `Last-Modified` | Cache set date |
| `X-Request-Fingerprint` | Unique request fingerprint (only for cachable requests, not queries) |

Note: `X-Request-Fingerprint` will only be available on single resource requests and their child endpoints. e.g `/anime/1`, `/anime/1/relations`.
They won't be available on pages which perform queries, like /anime, or /top/anime, etc.

## Allowed HTTP(s) requests

**Jikan REST API does not provide authenticated requests for MyAnimeList.** This means you can not use it to update your anime/manga list.
Only GET requests are supported which return READ-ONLY data.

## HTTP Responses

All error responses are accompanied by a JSON Error response.

| Exception | HTTP Status | Remarks |
| ---- | ---- | ---- |
| N/A | `200 - OK` | The request was successful |
| N/A | `304 - Not Modified` | You have the latest data (Cache Validation response) |
| `BadRequestException`,`ValidationException` | `400 - Bad Request` | You've made an invalid request. Recheck documentation |
| `BadResponseException` | `404 - Not Found` | The resource was not found or MyAnimeList responded with a `404` |
| `BadRequestException` | `405 - Method Not Allowed` | Requested Method is not supported for resource. Only `GET` requests are allowed |
| `RateLimitException` | `429 - Too Many Request` | You are being rate limited by Jikan or MyAnimeList is rate-limiting our servers (specified in the error response) |
| `UpstreamException`,`ParserException`,etc. | `500 - Internal Server Error` | Something didn't work. Try again later. If you see an error response with a `report_url` URL, please click on it to open an auto-generated GitHub issue |
| `ServiceUnavailableException` | `503 - Service Unavailable` | In most cases this is intentionally done if the service is down for maintenance. |

## JSON Error Response

```json
{
\"status\": 500,
\"type\": \"InternalException\",
\"message\": \"Exception Message\",
\"error\": \"Exception Trace\",
\"report_url\": \"https://github.com...\"
}
```

| Property | Remarks |
| ---- | ---- |
| `status` | Returned HTTP Status Code |
| `type` | Thrown Exception |
| `message` | Human-readable error message |
| `error` | Error response and trace from the API |
| `report_url` | Clicking this would redirect you to a generated GitHub issue |

## Cache Validation

- All requests return a `ETag` header which is an MD5 hash of the response
- You can use this hash to verify if there's new or updated content by suppliying it as the value for the `If-None-Match` in your next request header
- You will get a HTTP `304 - Not Modified` response if the content has not changed
- If the content has changed, you'll get a HTTP `200 - OK` response with the updated JSON response

![Cache Validation](https://i.imgur.com/925ozVn.png 'Cache Validation')

## Disclaimer

- Jikan is not affiliated with MyAnimeList.net.
- Jikan is a free, open-source API. Please use it responsibly.

----

By using the API, you are agreeing to Jikan's [terms of use](https://jikan.moe/terms) policy.

[v3 Documentation](https://jikan.docs.apiary.io/) - [Wrappers/SDKs](https://github.com/jikan-me/jikan#wrappers) - [Report an issue](https://github.com/jikan-me/jikan-rest/issues/new) - [Host your own server](https://github.com/jikan-me/jikan-rest)

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 4.0.0
- Package version: 4.0.0
- Generator version: 7.4.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [http://discord.jikan.moe](http://discord.jikan.moe)

## Requirements.

Python 3.7+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import jikan_openapi
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import jikan_openapi
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import jikan_openapi
from jikan_openapi.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.jikan.moe/v4
# See configuration.py for a list of all supported configuration parameters.
configuration = jikan_openapi.Configuration(
host = "https://api.jikan.moe/v4"
)

# Enter a context with an instance of the API client
with jikan_openapi.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = jikan_openapi.AnimeApi(api_client)
id = 56 # int |

try:
api_response = api_instance.get_anime_by_id(id)
print("The response of AnimeApi->get_anime_by_id:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AnimeApi->get_anime_by_id: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.jikan.moe/v4*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AnimeApi* | [**get_anime_by_id**](docs/AnimeApi.md#get_anime_by_id) | **GET** /anime/{id} |
*AnimeApi* | [**get_anime_characters**](docs/AnimeApi.md#get_anime_characters) | **GET** /anime/{id}/characters |
*AnimeApi* | [**get_anime_episode_by_id**](docs/AnimeApi.md#get_anime_episode_by_id) | **GET** /anime/{id}/episodes/{episode} |
*AnimeApi* | [**get_anime_episodes**](docs/AnimeApi.md#get_anime_episodes) | **GET** /anime/{id}/episodes |
*AnimeApi* | [**get_anime_external**](docs/AnimeApi.md#get_anime_external) | **GET** /anime/{id}/external |
*AnimeApi* | [**get_anime_forum**](docs/AnimeApi.md#get_anime_forum) | **GET** /anime/{id}/forum |
*AnimeApi* | [**get_anime_full_by_id**](docs/AnimeApi.md#get_anime_full_by_id) | **GET** /anime/{id}/full |
*AnimeApi* | [**get_anime_more_info**](docs/AnimeApi.md#get_anime_more_info) | **GET** /anime/{id}/moreinfo |
*AnimeApi* | [**get_anime_news**](docs/AnimeApi.md#get_anime_news) | **GET** /anime/{id}/news |
*AnimeApi* | [**get_anime_pictures**](docs/AnimeApi.md#get_anime_pictures) | **GET** /anime/{id}/pictures |
*AnimeApi* | [**get_anime_recommendations**](docs/AnimeApi.md#get_anime_recommendations) | **GET** /anime/{id}/recommendations |
*AnimeApi* | [**get_anime_relations**](docs/AnimeApi.md#get_anime_relations) | **GET** /anime/{id}/relations |
*AnimeApi* | [**get_anime_reviews**](docs/AnimeApi.md#get_anime_reviews) | **GET** /anime/{id}/reviews |
*AnimeApi* | [**get_anime_search**](docs/AnimeApi.md#get_anime_search) | **GET** /anime |
*AnimeApi* | [**get_anime_staff**](docs/AnimeApi.md#get_anime_staff) | **GET** /anime/{id}/staff |
*AnimeApi* | [**get_anime_statistics**](docs/AnimeApi.md#get_anime_statistics) | **GET** /anime/{id}/statistics |
*AnimeApi* | [**get_anime_streaming**](docs/AnimeApi.md#get_anime_streaming) | **GET** /anime/{id}/streaming |
*AnimeApi* | [**get_anime_themes**](docs/AnimeApi.md#get_anime_themes) | **GET** /anime/{id}/themes |
*AnimeApi* | [**get_anime_user_updates**](docs/AnimeApi.md#get_anime_user_updates) | **GET** /anime/{id}/userupdates |
*AnimeApi* | [**get_anime_videos**](docs/AnimeApi.md#get_anime_videos) | **GET** /anime/{id}/videos |
*AnimeApi* | [**get_anime_videos_episodes**](docs/AnimeApi.md#get_anime_videos_episodes) | **GET** /anime/{id}/videos/episodes |
*CharactersApi* | [**get_character_anime**](docs/CharactersApi.md#get_character_anime) | **GET** /characters/{id}/anime |
*CharactersApi* | [**get_character_by_id**](docs/CharactersApi.md#get_character_by_id) | **GET** /characters/{id} |
*CharactersApi* | [**get_character_full_by_id**](docs/CharactersApi.md#get_character_full_by_id) | **GET** /characters/{id}/full |
*CharactersApi* | [**get_character_manga**](docs/CharactersApi.md#get_character_manga) | **GET** /characters/{id}/manga |
*CharactersApi* | [**get_character_pictures**](docs/CharactersApi.md#get_character_pictures) | **GET** /characters/{id}/pictures |
*CharactersApi* | [**get_character_voice_actors**](docs/CharactersApi.md#get_character_voice_actors) | **GET** /characters/{id}/voices |
*CharactersApi* | [**get_characters_search**](docs/CharactersApi.md#get_characters_search) | **GET** /characters |
*ClubsApi* | [**get_club_members**](docs/ClubsApi.md#get_club_members) | **GET** /clubs/{id}/members |
*ClubsApi* | [**get_club_relations**](docs/ClubsApi.md#get_club_relations) | **GET** /clubs/{id}/relations |
*ClubsApi* | [**get_club_staff**](docs/ClubsApi.md#get_club_staff) | **GET** /clubs/{id}/staff |
*ClubsApi* | [**get_clubs_by_id**](docs/ClubsApi.md#get_clubs_by_id) | **GET** /clubs/{id} |
*ClubsApi* | [**get_clubs_search**](docs/ClubsApi.md#get_clubs_search) | **GET** /clubs |
*GenresApi* | [**get_anime_genres**](docs/GenresApi.md#get_anime_genres) | **GET** /genres/anime |
*GenresApi* | [**get_manga_genres**](docs/GenresApi.md#get_manga_genres) | **GET** /genres/manga |
*MagazinesApi* | [**get_magazines**](docs/MagazinesApi.md#get_magazines) | **GET** /magazines |
*MangaApi* | [**get_manga_by_id**](docs/MangaApi.md#get_manga_by_id) | **GET** /manga/{id} |
*MangaApi* | [**get_manga_characters**](docs/MangaApi.md#get_manga_characters) | **GET** /manga/{id}/characters |
*MangaApi* | [**get_manga_external**](docs/MangaApi.md#get_manga_external) | **GET** /manga/{id}/external |
*MangaApi* | [**get_manga_full_by_id**](docs/MangaApi.md#get_manga_full_by_id) | **GET** /manga/{id}/full |
*MangaApi* | [**get_manga_more_info**](docs/MangaApi.md#get_manga_more_info) | **GET** /manga/{id}/moreinfo |
*MangaApi* | [**get_manga_news**](docs/MangaApi.md#get_manga_news) | **GET** /manga/{id}/news |
*MangaApi* | [**get_manga_pictures**](docs/MangaApi.md#get_manga_pictures) | **GET** /manga/{id}/pictures |
*MangaApi* | [**get_manga_recommendations**](docs/MangaApi.md#get_manga_recommendations) | **GET** /manga/{id}/recommendations |
*MangaApi* | [**get_manga_relations**](docs/MangaApi.md#get_manga_relations) | **GET** /manga/{id}/relations |
*MangaApi* | [**get_manga_reviews**](docs/MangaApi.md#get_manga_reviews) | **GET** /manga/{id}/reviews |
*MangaApi* | [**get_manga_search**](docs/MangaApi.md#get_manga_search) | **GET** /manga |
*MangaApi* | [**get_manga_statistics**](docs/MangaApi.md#get_manga_statistics) | **GET** /manga/{id}/statistics |
*MangaApi* | [**get_manga_topics**](docs/MangaApi.md#get_manga_topics) | **GET** /manga/{id}/forum |
*MangaApi* | [**get_manga_user_updates**](docs/MangaApi.md#get_manga_user_updates) | **GET** /manga/{id}/userupdates |
*PeopleApi* | [**get_people_search**](docs/PeopleApi.md#get_people_search) | **GET** /people |
*PeopleApi* | [**get_person_anime**](docs/PeopleApi.md#get_person_anime) | **GET** /people/{id}/anime |
*PeopleApi* | [**get_person_by_id**](docs/PeopleApi.md#get_person_by_id) | **GET** /people/{id} |
*PeopleApi* | [**get_person_full_by_id**](docs/PeopleApi.md#get_person_full_by_id) | **GET** /people/{id}/full |
*PeopleApi* | [**get_person_manga**](docs/PeopleApi.md#get_person_manga) | **GET** /people/{id}/manga |
*PeopleApi* | [**get_person_pictures**](docs/PeopleApi.md#get_person_pictures) | **GET** /people/{id}/pictures |
*PeopleApi* | [**get_person_voices**](docs/PeopleApi.md#get_person_voices) | **GET** /people/{id}/voices |
*ProducersApi* | [**get_producer_by_id**](docs/ProducersApi.md#get_producer_by_id) | **GET** /producers/{id} |
*ProducersApi* | [**get_producer_external**](docs/ProducersApi.md#get_producer_external) | **GET** /producers/{id}/external |
*ProducersApi* | [**get_producer_full_by_id**](docs/ProducersApi.md#get_producer_full_by_id) | **GET** /producers/{id}/full |
*ProducersApi* | [**get_producers**](docs/ProducersApi.md#get_producers) | **GET** /producers |
*RandomApi* | [**get_random_anime**](docs/RandomApi.md#get_random_anime) | **GET** /random/anime |
*RandomApi* | [**get_random_characters**](docs/RandomApi.md#get_random_characters) | **GET** /random/characters |
*RandomApi* | [**get_random_manga**](docs/RandomApi.md#get_random_manga) | **GET** /random/manga |
*RandomApi* | [**get_random_people**](docs/RandomApi.md#get_random_people) | **GET** /random/people |
*RandomApi* | [**get_random_users**](docs/RandomApi.md#get_random_users) | **GET** /random/users |
*RecommendationsApi* | [**get_recent_anime_recommendations**](docs/RecommendationsApi.md#get_recent_anime_recommendations) | **GET** /recommendations/anime |
*RecommendationsApi* | [**get_recent_manga_recommendations**](docs/RecommendationsApi.md#get_recent_manga_recommendations) | **GET** /recommendations/manga |
*ReviewsApi* | [**get_recent_anime_reviews**](docs/ReviewsApi.md#get_recent_anime_reviews) | **GET** /reviews/anime |
*ReviewsApi* | [**get_recent_manga_reviews**](docs/ReviewsApi.md#get_recent_manga_reviews) | **GET** /reviews/manga |
*SchedulesApi* | [**get_schedules**](docs/SchedulesApi.md#get_schedules) | **GET** /schedules |
*SeasonsApi* | [**get_season**](docs/SeasonsApi.md#get_season) | **GET** /seasons/{year}/{season} |
*SeasonsApi* | [**get_season_now**](docs/SeasonsApi.md#get_season_now) | **GET** /seasons/now |
*SeasonsApi* | [**get_season_upcoming**](docs/SeasonsApi.md#get_season_upcoming) | **GET** /seasons/upcoming |
*SeasonsApi* | [**get_seasons_list**](docs/SeasonsApi.md#get_seasons_list) | **GET** /seasons |
*TopApi* | [**get_top_anime**](docs/TopApi.md#get_top_anime) | **GET** /top/anime |
*TopApi* | [**get_top_characters**](docs/TopApi.md#get_top_characters) | **GET** /top/characters |
*TopApi* | [**get_top_manga**](docs/TopApi.md#get_top_manga) | **GET** /top/manga |
*TopApi* | [**get_top_people**](docs/TopApi.md#get_top_people) | **GET** /top/people |
*TopApi* | [**get_top_reviews**](docs/TopApi.md#get_top_reviews) | **GET** /top/reviews |
*UsersApi* | [**get_user_about**](docs/UsersApi.md#get_user_about) | **GET** /users/{username}/about |
*UsersApi* | [**get_user_animelist**](docs/UsersApi.md#get_user_animelist) | **GET** /users/{username}/animelist |
*UsersApi* | [**get_user_by_id**](docs/UsersApi.md#get_user_by_id) | **GET** /users/userbyid/{id} |
*UsersApi* | [**get_user_clubs**](docs/UsersApi.md#get_user_clubs) | **GET** /users/{username}/clubs |
*UsersApi* | [**get_user_external**](docs/UsersApi.md#get_user_external) | **GET** /users/{username}/external |
*UsersApi* | [**get_user_favorites**](docs/UsersApi.md#get_user_favorites) | **GET** /users/{username}/favorites |
*UsersApi* | [**get_user_friends**](docs/UsersApi.md#get_user_friends) | **GET** /users/{username}/friends |
*UsersApi* | [**get_user_full_profile**](docs/UsersApi.md#get_user_full_profile) | **GET** /users/{username}/full |
*UsersApi* | [**get_user_history**](docs/UsersApi.md#get_user_history) | **GET** /users/{username}/history |
*UsersApi* | [**get_user_manga_list**](docs/UsersApi.md#get_user_manga_list) | **GET** /users/{username}/mangalist |
*UsersApi* | [**get_user_profile**](docs/UsersApi.md#get_user_profile) | **GET** /users/{username} |
*UsersApi* | [**get_user_recommendations**](docs/UsersApi.md#get_user_recommendations) | **GET** /users/{username}/recommendations |
*UsersApi* | [**get_user_reviews**](docs/UsersApi.md#get_user_reviews) | **GET** /users/{username}/reviews |
*UsersApi* | [**get_user_statistics**](docs/UsersApi.md#get_user_statistics) | **GET** /users/{username}/statistics |
*UsersApi* | [**get_user_updates**](docs/UsersApi.md#get_user_updates) | **GET** /users/{username}/userupdates |
*UsersApi* | [**get_users_search**](docs/UsersApi.md#get_users_search) | **GET** /users |
*WatchApi* | [**get_watch_popular_episodes**](docs/WatchApi.md#get_watch_popular_episodes) | **GET** /watch/episodes/popular |
*WatchApi* | [**get_watch_popular_promos**](docs/WatchApi.md#get_watch_popular_promos) | **GET** /watch/promos/popular |
*WatchApi* | [**get_watch_recent_episodes**](docs/WatchApi.md#get_watch_recent_episodes) | **GET** /watch/episodes |
*WatchApi* | [**get_watch_recent_promos**](docs/WatchApi.md#get_watch_recent_promos) | **GET** /watch/promos |

## Documentation For Models

- [Anime](docs/Anime.md)
- [AnimeCharacters](docs/AnimeCharacters.md)
- [AnimeCharactersDataInner](docs/AnimeCharactersDataInner.md)
- [AnimeCharactersDataInnerCharacter](docs/AnimeCharactersDataInnerCharacter.md)
- [AnimeCharactersDataInnerVoiceActorsInner](docs/AnimeCharactersDataInnerVoiceActorsInner.md)
- [AnimeCharactersDataInnerVoiceActorsInnerPerson](docs/AnimeCharactersDataInnerVoiceActorsInnerPerson.md)
- [AnimeEpisode](docs/AnimeEpisode.md)
- [AnimeEpisodes](docs/AnimeEpisodes.md)
- [AnimeEpisodesAllOfData](docs/AnimeEpisodesAllOfData.md)
- [AnimeFull](docs/AnimeFull.md)
- [AnimeFullExternalInner](docs/AnimeFullExternalInner.md)
- [AnimeFullRelationsInner](docs/AnimeFullRelationsInner.md)
- [AnimeFullTheme](docs/AnimeFullTheme.md)
- [AnimeImages](docs/AnimeImages.md)
- [AnimeImagesJpg](docs/AnimeImagesJpg.md)
- [AnimeImagesWebp](docs/AnimeImagesWebp.md)
- [AnimeMeta](docs/AnimeMeta.md)
- [AnimeNews](docs/AnimeNews.md)
- [AnimeRelations](docs/AnimeRelations.md)
- [AnimeReview](docs/AnimeReview.md)
- [AnimeReviews](docs/AnimeReviews.md)
- [AnimeReviewsAllOfData](docs/AnimeReviewsAllOfData.md)
- [AnimeSearch](docs/AnimeSearch.md)
- [AnimeSearchQueryOrderby](docs/AnimeSearchQueryOrderby.md)
- [AnimeSearchQueryRating](docs/AnimeSearchQueryRating.md)
- [AnimeSearchQueryStatus](docs/AnimeSearchQueryStatus.md)
- [AnimeSearchQueryType](docs/AnimeSearchQueryType.md)
- [AnimeStaff](docs/AnimeStaff.md)
- [AnimeStaffDataInner](docs/AnimeStaffDataInner.md)
- [AnimeStaffDataInnerPerson](docs/AnimeStaffDataInnerPerson.md)
- [AnimeStatistics](docs/AnimeStatistics.md)
- [AnimeStatisticsData](docs/AnimeStatisticsData.md)
- [AnimeStatisticsDataScoresInner](docs/AnimeStatisticsDataScoresInner.md)
- [AnimeThemes](docs/AnimeThemes.md)
- [AnimeUserupdates](docs/AnimeUserupdates.md)
- [AnimeUserupdatesAllOfData](docs/AnimeUserupdatesAllOfData.md)
- [AnimeVideos](docs/AnimeVideos.md)
- [AnimeVideosData](docs/AnimeVideosData.md)
- [AnimeVideosDataEpisodesInner](docs/AnimeVideosDataEpisodesInner.md)
- [AnimeVideosDataMusicVideosInner](docs/AnimeVideosDataMusicVideosInner.md)
- [AnimeVideosDataMusicVideosInnerMeta](docs/AnimeVideosDataMusicVideosInnerMeta.md)
- [AnimeVideosDataPromoInner](docs/AnimeVideosDataPromoInner.md)
- [AnimeVideosEpisodes](docs/AnimeVideosEpisodes.md)
- [AnimeVideosEpisodesAllOfData](docs/AnimeVideosEpisodesAllOfData.md)
- [Broadcast](docs/Broadcast.md)
- [Character](docs/Character.md)
- [CharacterAnime](docs/CharacterAnime.md)
- [CharacterAnimeDataInner](docs/CharacterAnimeDataInner.md)
- [CharacterFull](docs/CharacterFull.md)
- [CharacterFullMangaInner](docs/CharacterFullMangaInner.md)
- [CharacterFullVoicesInner](docs/CharacterFullVoicesInner.md)
- [CharacterImages](docs/CharacterImages.md)
- [CharacterImagesJpg](docs/CharacterImagesJpg.md)
- [CharacterImagesWebp](docs/CharacterImagesWebp.md)
- [CharacterManga](docs/CharacterManga.md)
- [CharacterMeta](docs/CharacterMeta.md)
- [CharacterPictures](docs/CharacterPictures.md)
- [CharacterPicturesDataInner](docs/CharacterPicturesDataInner.md)
- [CharacterVoiceActors](docs/CharacterVoiceActors.md)
- [CharactersSearch](docs/CharactersSearch.md)
- [CharactersSearchQueryOrderby](docs/CharactersSearchQueryOrderby.md)
- [Club](docs/Club.md)
- [ClubMember](docs/ClubMember.md)
- [ClubMemberDataInner](docs/ClubMemberDataInner.md)
- [ClubRelations](docs/ClubRelations.md)
- [ClubRelationsData](docs/ClubRelationsData.md)
- [ClubSearchQueryCategory](docs/ClubSearchQueryCategory.md)
- [ClubSearchQueryOrderby](docs/ClubSearchQueryOrderby.md)
- [ClubSearchQueryType](docs/ClubSearchQueryType.md)
- [ClubStaff](docs/ClubStaff.md)
- [ClubStaffDataInner](docs/ClubStaffDataInner.md)
- [ClubsSearch](docs/ClubsSearch.md)
- [CommonImages](docs/CommonImages.md)
- [Daterange](docs/Daterange.md)
- [DaterangeProp](docs/DaterangeProp.md)
- [DaterangePropFrom](docs/DaterangePropFrom.md)
- [DaterangePropTo](docs/DaterangePropTo.md)
- [EntryMeta](docs/EntryMeta.md)
- [EntryRecommendations](docs/EntryRecommendations.md)
- [ExternalLinks](docs/ExternalLinks.md)
- [Forum](docs/Forum.md)
- [ForumDataInner](docs/ForumDataInner.md)
- [ForumDataInnerLastComment](docs/ForumDataInnerLastComment.md)
- [Genre](docs/Genre.md)
- [GenreQueryFilter](docs/GenreQueryFilter.md)
- [Genres](docs/Genres.md)
- [GetAnimeById200Response](docs/GetAnimeById200Response.md)
- [GetAnimeEpisodeById200Response](docs/GetAnimeEpisodeById200Response.md)
- [GetAnimeFullById200Response](docs/GetAnimeFullById200Response.md)
- [GetAnimeRelations200Response](docs/GetAnimeRelations200Response.md)
- [GetCharacterById200Response](docs/GetCharacterById200Response.md)
- [GetCharacterFullById200Response](docs/GetCharacterFullById200Response.md)
- [GetClubMembers200Response](docs/GetClubMembers200Response.md)
- [GetClubsById200Response](docs/GetClubsById200Response.md)
- [GetMangaById200Response](docs/GetMangaById200Response.md)
- [GetMangaFullById200Response](docs/GetMangaFullById200Response.md)
- [GetPersonById200Response](docs/GetPersonById200Response.md)
- [GetPersonFullById200Response](docs/GetPersonFullById200Response.md)
- [GetProducerById200Response](docs/GetProducerById200Response.md)
- [GetProducerFullById200Response](docs/GetProducerFullById200Response.md)
- [GetRandomUsers200Response](docs/GetRandomUsers200Response.md)
- [GetTopReviews200Response](docs/GetTopReviews200Response.md)
- [GetTopReviews200ResponseData](docs/GetTopReviews200ResponseData.md)
- [GetTopReviews200ResponseDataAllOfDataInner](docs/GetTopReviews200ResponseDataAllOfDataInner.md)
- [GetTopReviews200ResponseDataAllOfDataInnerAnyOf](docs/GetTopReviews200ResponseDataAllOfDataInnerAnyOf.md)
- [GetTopReviews200ResponseDataAllOfDataInnerAnyOf1](docs/GetTopReviews200ResponseDataAllOfDataInnerAnyOf1.md)
- [GetUserById200Response](docs/GetUserById200Response.md)
- [GetUserFavorites200Response](docs/GetUserFavorites200Response.md)
- [GetUserFullProfile200Response](docs/GetUserFullProfile200Response.md)
- [History](docs/History.md)
- [Magazine](docs/Magazine.md)
- [Magazines](docs/Magazines.md)
- [MagazinesQueryOrderby](docs/MagazinesQueryOrderby.md)
- [MalUrl](docs/MalUrl.md)
- [MalUrl2](docs/MalUrl2.md)
- [Manga](docs/Manga.md)
- [MangaCharacters](docs/MangaCharacters.md)
- [MangaCharactersDataInner](docs/MangaCharactersDataInner.md)
- [MangaFull](docs/MangaFull.md)
- [MangaImages](docs/MangaImages.md)
- [MangaMeta](docs/MangaMeta.md)
- [MangaNews](docs/MangaNews.md)
- [MangaPictures](docs/MangaPictures.md)
- [MangaReview](docs/MangaReview.md)
- [MangaReviewReactions](docs/MangaReviewReactions.md)
- [MangaReviews](docs/MangaReviews.md)
- [MangaReviewsAllOfData](docs/MangaReviewsAllOfData.md)
- [MangaSearch](docs/MangaSearch.md)
- [MangaSearchQueryOrderby](docs/MangaSearchQueryOrderby.md)
- [MangaSearchQueryStatus](docs/MangaSearchQueryStatus.md)
- [MangaSearchQueryType](docs/MangaSearchQueryType.md)
- [MangaStatistics](docs/MangaStatistics.md)
- [MangaStatisticsData](docs/MangaStatisticsData.md)
- [MangaUserupdates](docs/MangaUserupdates.md)
- [MangaUserupdatesAllOfData](docs/MangaUserupdatesAllOfData.md)
- [Moreinfo](docs/Moreinfo.md)
- [MoreinfoData](docs/MoreinfoData.md)
- [News](docs/News.md)
- [NewsDataInner](docs/NewsDataInner.md)
- [Pagination](docs/Pagination.md)
- [PaginationPagination](docs/PaginationPagination.md)
- [PaginationPlus](docs/PaginationPlus.md)
- [PaginationPlusPagination](docs/PaginationPlusPagination.md)
- [PaginationPlusPaginationItems](docs/PaginationPlusPaginationItems.md)
- [PeopleImages](docs/PeopleImages.md)
- [PeopleSearch](docs/PeopleSearch.md)
- [PeopleSearchAllOfData](docs/PeopleSearchAllOfData.md)
- [PeopleSearchQueryOrderby](docs/PeopleSearchQueryOrderby.md)
- [Person](docs/Person.md)
- [PersonAnime](docs/PersonAnime.md)
- [PersonAnimeDataInner](docs/PersonAnimeDataInner.md)
- [PersonFull](docs/PersonFull.md)
- [PersonFullMangaInner](docs/PersonFullMangaInner.md)
- [PersonFullVoicesInner](docs/PersonFullVoicesInner.md)
- [PersonManga](docs/PersonManga.md)
- [PersonMeta](docs/PersonMeta.md)
- [PersonPictures](docs/PersonPictures.md)
- [PersonVoiceActingRoles](docs/PersonVoiceActingRoles.md)
- [Pictures](docs/Pictures.md)
- [PicturesDataInner](docs/PicturesDataInner.md)
- [PicturesVariants](docs/PicturesVariants.md)
- [PicturesVariantsDataInner](docs/PicturesVariantsDataInner.md)
- [Producer](docs/Producer.md)
- [ProducerFull](docs/ProducerFull.md)
- [Producers](docs/Producers.md)
- [ProducersQueryOrderby](docs/ProducersQueryOrderby.md)
- [Random](docs/Random.md)
- [RandomDataInner](docs/RandomDataInner.md)
- [Recommendations](docs/Recommendations.md)
- [RecommendationsAllOfData](docs/RecommendationsAllOfData.md)
- [RecommendationsAllOfEntry](docs/RecommendationsAllOfEntry.md)
- [Relation](docs/Relation.md)
- [ReviewsCollection](docs/ReviewsCollection.md)
- [ReviewsCollectionDataInner](docs/ReviewsCollectionDataInner.md)
- [Schedules](docs/Schedules.md)
- [SearchQuerySort](docs/SearchQuerySort.md)
- [Seasons](docs/Seasons.md)
- [SeasonsDataInner](docs/SeasonsDataInner.md)
- [StreamingLinks](docs/StreamingLinks.md)
- [Title](docs/Title.md)
- [TopAnimeFilter](docs/TopAnimeFilter.md)
- [TopMangaFilter](docs/TopMangaFilter.md)
- [TopReviewsTypeEnum](docs/TopReviewsTypeEnum.md)
- [Trailer](docs/Trailer.md)
- [TrailerBase](docs/TrailerBase.md)
- [TrailerImages](docs/TrailerImages.md)
- [TrailerImagesImages](docs/TrailerImagesImages.md)
- [UserAbout](docs/UserAbout.md)
- [UserAboutDataInner](docs/UserAboutDataInner.md)
- [UserAnimeListStatusFilter](docs/UserAnimeListStatusFilter.md)
- [UserById](docs/UserById.md)
- [UserClubs](docs/UserClubs.md)
- [UserClubsAllOfData](docs/UserClubsAllOfData.md)
- [UserFavorites](docs/UserFavorites.md)
- [UserFavoritesAnimeInner](docs/UserFavoritesAnimeInner.md)
- [UserFavoritesCharactersInner](docs/UserFavoritesCharactersInner.md)
- [UserFavoritesMangaInner](docs/UserFavoritesMangaInner.md)
- [UserFriends](docs/UserFriends.md)
- [UserFriendsAllOfData](docs/UserFriendsAllOfData.md)
- [UserHistory](docs/UserHistory.md)
- [UserImages](docs/UserImages.md)
- [UserImagesJpg](docs/UserImagesJpg.md)
- [UserImagesWebp](docs/UserImagesWebp.md)
- [UserMangaListStatusFilter](docs/UserMangaListStatusFilter.md)
- [UserMeta](docs/UserMeta.md)
- [UserProfile](docs/UserProfile.md)
- [UserProfileFull](docs/UserProfileFull.md)
- [UserProfileFullStatistics](docs/UserProfileFullStatistics.md)
- [UserProfileFullStatisticsAnime](docs/UserProfileFullStatisticsAnime.md)
- [UserProfileFullStatisticsManga](docs/UserProfileFullStatisticsManga.md)
- [UserStatistics](docs/UserStatistics.md)
- [UserUpdates](docs/UserUpdates.md)
- [UserUpdatesData](docs/UserUpdatesData.md)
- [UserUpdatesDataAnimeInner](docs/UserUpdatesDataAnimeInner.md)
- [UserUpdatesDataMangaInner](docs/UserUpdatesDataMangaInner.md)
- [UsersSearch](docs/UsersSearch.md)
- [UsersSearchAllOfData](docs/UsersSearchAllOfData.md)
- [UsersSearchQueryGender](docs/UsersSearchQueryGender.md)
- [UsersTemp](docs/UsersTemp.md)
- [UsersTempDataInner](docs/UsersTempDataInner.md)
- [UsersTempDataInnerAnimeStats](docs/UsersTempDataInnerAnimeStats.md)
- [UsersTempDataInnerFavorites](docs/UsersTempDataInnerFavorites.md)
- [UsersTempDataInnerImages](docs/UsersTempDataInnerImages.md)
- [UsersTempDataInnerImagesJpg](docs/UsersTempDataInnerImagesJpg.md)
- [UsersTempDataInnerImagesWebp](docs/UsersTempDataInnerImagesWebp.md)
- [UsersTempDataInnerMangaStats](docs/UsersTempDataInnerMangaStats.md)
- [WatchEpisodes](docs/WatchEpisodes.md)
- [WatchEpisodesAllOfData](docs/WatchEpisodesAllOfData.md)
- [WatchEpisodesAllOfEpisodes](docs/WatchEpisodesAllOfEpisodes.md)
- [WatchPromos](docs/WatchPromos.md)
- [WatchPromosAllOfData](docs/WatchPromosAllOfData.md)


## Documentation For Authorization

Endpoints do not require authorization.

## Author