{"id":25384179,"url":"https://github.com/mahmudindev/openapi-jikan-python","last_synced_at":"2025-10-25T12:45:17.011Z","repository":{"id":276339591,"uuid":"864843880","full_name":"mahmudindev/openapi-jikan-python","owner":"mahmudindev","description":"Python-based generated Jikan (MyAnimeList) OpenAPI client (Unofficial).","archived":false,"fork":false,"pushed_at":"2024-09-29T10:11:52.000Z","size":310,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-15T08:38:24.119Z","etag":null,"topics":["client","comics","jikan-api","myanimelist","openapi","sdk"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mahmudindev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-29T10:11:47.000Z","updated_at":"2024-10-08T21:40:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"4ce17dcb-9c77-4945-9b84-a1c1e1d6fc98","html_url":"https://github.com/mahmudindev/openapi-jikan-python","commit_stats":null,"previous_names":["mahmudindev/openapi-jikan-python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-jikan-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-jikan-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-jikan-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-jikan-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmudindev","download_url":"https://codeload.github.com/mahmudindev/openapi-jikan-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248055275,"owners_count":21040151,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client","comics","jikan-api","myanimelist","openapi","sdk"],"created_at":"2025-02-15T08:37:46.256Z","updated_at":"2025-10-25T12:45:16.996Z","avatar_url":"https://github.com/mahmudindev.png","language":"Python","readme":"# jikan-openapi\n[Jikan](https://jikan.moe) is an **Unofficial** MyAnimeList API.\nIt scrapes the website to satisfy the need for a complete API - which MyAnimeList lacks.\n\n# Information\n\n⚡ Jikan is powered by its awesome backers - 🙏 [Become a backer](https://www.patreon.com/jikan)\n\n## Rate Limiting\n\n| Duration | Requests |\n|----|----|\n| Daily | **Unlimited** |\n| Per Minute | 60 requests |\n| Per Second | 3 requests |\n\nNote: It's still possible to get rate limited from MyAnimeList.net instead.\n\n\n## JSON Notes\n- Any property (except arrays or objects) whose value does not exist or is undetermined, will be `null`.\n- Any array or object property whose value does not exist or is undetermined, will be empty.\n- Any `score` property whose value does not exist or is undetermined, will be `0`.\n- All dates and timestamps are returned in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) format and in UTC timezone\n\n## Caching\nBy **CACHING**, we refer to the data parsed from MyAnimeList which is stored temporarily on our servers to provide better API performance.\n\nAll requests are cached for **24 hours**.\n\nThe following response headers will detail cache information.\n\n| Header | Remarks |\n| ---- | ---- |\n| `Expires` | Cache expiry date |\n| `Last-Modified` | Cache set date |\n| `X-Request-Fingerprint` | Unique request fingerprint (only for cachable requests, not queries) |\n\n\nNote: `X-Request-Fingerprint` will only be available on single resource requests and their child endpoints. e.g `/anime/1`, `/anime/1/relations`.\nThey won't be available on pages which perform queries, like /anime, or /top/anime, etc.\n\n## Allowed HTTP(s) requests\n\n**Jikan REST API does not provide authenticated requests for MyAnimeList.** This means you can not use it to update your anime/manga list.\nOnly GET requests are supported which return READ-ONLY data.\n\n## HTTP Responses\n\nAll error responses are accompanied by a JSON Error response.\n\n| Exception | HTTP Status | Remarks |\n| ---- | ---- | ---- |\n| N/A | `200 - OK` | The request was successful |\n| N/A | `304 - Not Modified` | You have the latest data (Cache Validation response) |\n| `BadRequestException`,`ValidationException` | `400 - Bad Request` | You've made an invalid request. Recheck documentation |\n| `BadResponseException` | `404 - Not Found` | The resource was not found or MyAnimeList responded with a `404` |\n| `BadRequestException` | `405 - Method Not Allowed` | Requested Method is not supported for resource. Only `GET` requests are allowed |\n| `RateLimitException` | `429 - Too Many Request` | You are being rate limited by Jikan or MyAnimeList is rate-limiting our servers (specified in the error response) |\n| `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 |\n| `ServiceUnavailableException` | `503 - Service Unavailable` | In most cases this is intentionally done if the service is down for maintenance. |\n\n## JSON Error Response\n\n```json\n {\n     \\\"status\\\": 500,\n     \\\"type\\\": \\\"InternalException\\\",\n     \\\"message\\\": \\\"Exception Message\\\",\n     \\\"error\\\": \\\"Exception Trace\\\",\n     \\\"report_url\\\": \\\"https://github.com...\\\"\n  }\n```\n\n| Property | Remarks |\n| ---- | ---- |\n| `status` | Returned HTTP Status Code |\n| `type` | Thrown Exception |\n| `message` | Human-readable error message |\n| `error` | Error response and trace from the API |\n| `report_url` | Clicking this would redirect you to a generated GitHub issue |\n\n\n## Cache Validation\n\n- All requests return a `ETag` header which is an MD5 hash of the response\n- 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\n- You will get a HTTP `304 - Not Modified` response if the content has not changed\n- If the content has changed, you'll get a HTTP `200 - OK` response with the updated JSON response\n\n![Cache Validation](https://i.imgur.com/925ozVn.png 'Cache Validation')\n\n## Disclaimer\n\n- Jikan is not affiliated with MyAnimeList.net.\n- Jikan is a free, open-source API. Please use it responsibly.\n\n----\n\nBy using the API, you are agreeing to Jikan's [terms of use](https://jikan.moe/terms) policy.\n\n[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)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 4.0.0\n- Package version: 4.0.0\n- Generator version: 7.4.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [http://discord.jikan.moe](http://discord.jikan.moe)\n\n## Requirements.\n\nPython 3.7+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport jikan_openapi\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport jikan_openapi\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport jikan_openapi\nfrom jikan_openapi.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.jikan.moe/v4\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = jikan_openapi.Configuration(\n    host = \"https://api.jikan.moe/v4\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith jikan_openapi.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = jikan_openapi.AnimeApi(api_client)\n    id = 56 # int | \n\n    try:\n        api_response = api_instance.get_anime_by_id(id)\n        print(\"The response of AnimeApi-\u003eget_anime_by_id:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling AnimeApi-\u003eget_anime_by_id: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.jikan.moe/v4*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AnimeApi* | [**get_anime_by_id**](docs/AnimeApi.md#get_anime_by_id) | **GET** /anime/{id} | \n*AnimeApi* | [**get_anime_characters**](docs/AnimeApi.md#get_anime_characters) | **GET** /anime/{id}/characters | \n*AnimeApi* | [**get_anime_episode_by_id**](docs/AnimeApi.md#get_anime_episode_by_id) | **GET** /anime/{id}/episodes/{episode} | \n*AnimeApi* | [**get_anime_episodes**](docs/AnimeApi.md#get_anime_episodes) | **GET** /anime/{id}/episodes | \n*AnimeApi* | [**get_anime_external**](docs/AnimeApi.md#get_anime_external) | **GET** /anime/{id}/external | \n*AnimeApi* | [**get_anime_forum**](docs/AnimeApi.md#get_anime_forum) | **GET** /anime/{id}/forum | \n*AnimeApi* | [**get_anime_full_by_id**](docs/AnimeApi.md#get_anime_full_by_id) | **GET** /anime/{id}/full | \n*AnimeApi* | [**get_anime_more_info**](docs/AnimeApi.md#get_anime_more_info) | **GET** /anime/{id}/moreinfo | \n*AnimeApi* | [**get_anime_news**](docs/AnimeApi.md#get_anime_news) | **GET** /anime/{id}/news | \n*AnimeApi* | [**get_anime_pictures**](docs/AnimeApi.md#get_anime_pictures) | **GET** /anime/{id}/pictures | \n*AnimeApi* | [**get_anime_recommendations**](docs/AnimeApi.md#get_anime_recommendations) | **GET** /anime/{id}/recommendations | \n*AnimeApi* | [**get_anime_relations**](docs/AnimeApi.md#get_anime_relations) | **GET** /anime/{id}/relations | \n*AnimeApi* | [**get_anime_reviews**](docs/AnimeApi.md#get_anime_reviews) | **GET** /anime/{id}/reviews | \n*AnimeApi* | [**get_anime_search**](docs/AnimeApi.md#get_anime_search) | **GET** /anime | \n*AnimeApi* | [**get_anime_staff**](docs/AnimeApi.md#get_anime_staff) | **GET** /anime/{id}/staff | \n*AnimeApi* | [**get_anime_statistics**](docs/AnimeApi.md#get_anime_statistics) | **GET** /anime/{id}/statistics | \n*AnimeApi* | [**get_anime_streaming**](docs/AnimeApi.md#get_anime_streaming) | **GET** /anime/{id}/streaming | \n*AnimeApi* | [**get_anime_themes**](docs/AnimeApi.md#get_anime_themes) | **GET** /anime/{id}/themes | \n*AnimeApi* | [**get_anime_user_updates**](docs/AnimeApi.md#get_anime_user_updates) | **GET** /anime/{id}/userupdates | \n*AnimeApi* | [**get_anime_videos**](docs/AnimeApi.md#get_anime_videos) | **GET** /anime/{id}/videos | \n*AnimeApi* | [**get_anime_videos_episodes**](docs/AnimeApi.md#get_anime_videos_episodes) | **GET** /anime/{id}/videos/episodes | \n*CharactersApi* | [**get_character_anime**](docs/CharactersApi.md#get_character_anime) | **GET** /characters/{id}/anime | \n*CharactersApi* | [**get_character_by_id**](docs/CharactersApi.md#get_character_by_id) | **GET** /characters/{id} | \n*CharactersApi* | [**get_character_full_by_id**](docs/CharactersApi.md#get_character_full_by_id) | **GET** /characters/{id}/full | \n*CharactersApi* | [**get_character_manga**](docs/CharactersApi.md#get_character_manga) | **GET** /characters/{id}/manga | \n*CharactersApi* | [**get_character_pictures**](docs/CharactersApi.md#get_character_pictures) | **GET** /characters/{id}/pictures | \n*CharactersApi* | [**get_character_voice_actors**](docs/CharactersApi.md#get_character_voice_actors) | **GET** /characters/{id}/voices | \n*CharactersApi* | [**get_characters_search**](docs/CharactersApi.md#get_characters_search) | **GET** /characters | \n*ClubsApi* | [**get_club_members**](docs/ClubsApi.md#get_club_members) | **GET** /clubs/{id}/members | \n*ClubsApi* | [**get_club_relations**](docs/ClubsApi.md#get_club_relations) | **GET** /clubs/{id}/relations | \n*ClubsApi* | [**get_club_staff**](docs/ClubsApi.md#get_club_staff) | **GET** /clubs/{id}/staff | \n*ClubsApi* | [**get_clubs_by_id**](docs/ClubsApi.md#get_clubs_by_id) | **GET** /clubs/{id} | \n*ClubsApi* | [**get_clubs_search**](docs/ClubsApi.md#get_clubs_search) | **GET** /clubs | \n*GenresApi* | [**get_anime_genres**](docs/GenresApi.md#get_anime_genres) | **GET** /genres/anime | \n*GenresApi* | [**get_manga_genres**](docs/GenresApi.md#get_manga_genres) | **GET** /genres/manga | \n*MagazinesApi* | [**get_magazines**](docs/MagazinesApi.md#get_magazines) | **GET** /magazines | \n*MangaApi* | [**get_manga_by_id**](docs/MangaApi.md#get_manga_by_id) | **GET** /manga/{id} | \n*MangaApi* | [**get_manga_characters**](docs/MangaApi.md#get_manga_characters) | **GET** /manga/{id}/characters | \n*MangaApi* | [**get_manga_external**](docs/MangaApi.md#get_manga_external) | **GET** /manga/{id}/external | \n*MangaApi* | [**get_manga_full_by_id**](docs/MangaApi.md#get_manga_full_by_id) | **GET** /manga/{id}/full | \n*MangaApi* | [**get_manga_more_info**](docs/MangaApi.md#get_manga_more_info) | **GET** /manga/{id}/moreinfo | \n*MangaApi* | [**get_manga_news**](docs/MangaApi.md#get_manga_news) | **GET** /manga/{id}/news | \n*MangaApi* | [**get_manga_pictures**](docs/MangaApi.md#get_manga_pictures) | **GET** /manga/{id}/pictures | \n*MangaApi* | [**get_manga_recommendations**](docs/MangaApi.md#get_manga_recommendations) | **GET** /manga/{id}/recommendations | \n*MangaApi* | [**get_manga_relations**](docs/MangaApi.md#get_manga_relations) | **GET** /manga/{id}/relations | \n*MangaApi* | [**get_manga_reviews**](docs/MangaApi.md#get_manga_reviews) | **GET** /manga/{id}/reviews | \n*MangaApi* | [**get_manga_search**](docs/MangaApi.md#get_manga_search) | **GET** /manga | \n*MangaApi* | [**get_manga_statistics**](docs/MangaApi.md#get_manga_statistics) | **GET** /manga/{id}/statistics | \n*MangaApi* | [**get_manga_topics**](docs/MangaApi.md#get_manga_topics) | **GET** /manga/{id}/forum | \n*MangaApi* | [**get_manga_user_updates**](docs/MangaApi.md#get_manga_user_updates) | **GET** /manga/{id}/userupdates | \n*PeopleApi* | [**get_people_search**](docs/PeopleApi.md#get_people_search) | **GET** /people | \n*PeopleApi* | [**get_person_anime**](docs/PeopleApi.md#get_person_anime) | **GET** /people/{id}/anime | \n*PeopleApi* | [**get_person_by_id**](docs/PeopleApi.md#get_person_by_id) | **GET** /people/{id} | \n*PeopleApi* | [**get_person_full_by_id**](docs/PeopleApi.md#get_person_full_by_id) | **GET** /people/{id}/full | \n*PeopleApi* | [**get_person_manga**](docs/PeopleApi.md#get_person_manga) | **GET** /people/{id}/manga | \n*PeopleApi* | [**get_person_pictures**](docs/PeopleApi.md#get_person_pictures) | **GET** /people/{id}/pictures | \n*PeopleApi* | [**get_person_voices**](docs/PeopleApi.md#get_person_voices) | **GET** /people/{id}/voices | \n*ProducersApi* | [**get_producer_by_id**](docs/ProducersApi.md#get_producer_by_id) | **GET** /producers/{id} | \n*ProducersApi* | [**get_producer_external**](docs/ProducersApi.md#get_producer_external) | **GET** /producers/{id}/external | \n*ProducersApi* | [**get_producer_full_by_id**](docs/ProducersApi.md#get_producer_full_by_id) | **GET** /producers/{id}/full | \n*ProducersApi* | [**get_producers**](docs/ProducersApi.md#get_producers) | **GET** /producers | \n*RandomApi* | [**get_random_anime**](docs/RandomApi.md#get_random_anime) | **GET** /random/anime | \n*RandomApi* | [**get_random_characters**](docs/RandomApi.md#get_random_characters) | **GET** /random/characters | \n*RandomApi* | [**get_random_manga**](docs/RandomApi.md#get_random_manga) | **GET** /random/manga | \n*RandomApi* | [**get_random_people**](docs/RandomApi.md#get_random_people) | **GET** /random/people | \n*RandomApi* | [**get_random_users**](docs/RandomApi.md#get_random_users) | **GET** /random/users | \n*RecommendationsApi* | [**get_recent_anime_recommendations**](docs/RecommendationsApi.md#get_recent_anime_recommendations) | **GET** /recommendations/anime | \n*RecommendationsApi* | [**get_recent_manga_recommendations**](docs/RecommendationsApi.md#get_recent_manga_recommendations) | **GET** /recommendations/manga | \n*ReviewsApi* | [**get_recent_anime_reviews**](docs/ReviewsApi.md#get_recent_anime_reviews) | **GET** /reviews/anime | \n*ReviewsApi* | [**get_recent_manga_reviews**](docs/ReviewsApi.md#get_recent_manga_reviews) | **GET** /reviews/manga | \n*SchedulesApi* | [**get_schedules**](docs/SchedulesApi.md#get_schedules) | **GET** /schedules | \n*SeasonsApi* | [**get_season**](docs/SeasonsApi.md#get_season) | **GET** /seasons/{year}/{season} | \n*SeasonsApi* | [**get_season_now**](docs/SeasonsApi.md#get_season_now) | **GET** /seasons/now | \n*SeasonsApi* | [**get_season_upcoming**](docs/SeasonsApi.md#get_season_upcoming) | **GET** /seasons/upcoming | \n*SeasonsApi* | [**get_seasons_list**](docs/SeasonsApi.md#get_seasons_list) | **GET** /seasons | \n*TopApi* | [**get_top_anime**](docs/TopApi.md#get_top_anime) | **GET** /top/anime | \n*TopApi* | [**get_top_characters**](docs/TopApi.md#get_top_characters) | **GET** /top/characters | \n*TopApi* | [**get_top_manga**](docs/TopApi.md#get_top_manga) | **GET** /top/manga | \n*TopApi* | [**get_top_people**](docs/TopApi.md#get_top_people) | **GET** /top/people | \n*TopApi* | [**get_top_reviews**](docs/TopApi.md#get_top_reviews) | **GET** /top/reviews | \n*UsersApi* | [**get_user_about**](docs/UsersApi.md#get_user_about) | **GET** /users/{username}/about | \n*UsersApi* | [**get_user_animelist**](docs/UsersApi.md#get_user_animelist) | **GET** /users/{username}/animelist | \n*UsersApi* | [**get_user_by_id**](docs/UsersApi.md#get_user_by_id) | **GET** /users/userbyid/{id} | \n*UsersApi* | [**get_user_clubs**](docs/UsersApi.md#get_user_clubs) | **GET** /users/{username}/clubs | \n*UsersApi* | [**get_user_external**](docs/UsersApi.md#get_user_external) | **GET** /users/{username}/external | \n*UsersApi* | [**get_user_favorites**](docs/UsersApi.md#get_user_favorites) | **GET** /users/{username}/favorites | \n*UsersApi* | [**get_user_friends**](docs/UsersApi.md#get_user_friends) | **GET** /users/{username}/friends | \n*UsersApi* | [**get_user_full_profile**](docs/UsersApi.md#get_user_full_profile) | **GET** /users/{username}/full | \n*UsersApi* | [**get_user_history**](docs/UsersApi.md#get_user_history) | **GET** /users/{username}/history | \n*UsersApi* | [**get_user_manga_list**](docs/UsersApi.md#get_user_manga_list) | **GET** /users/{username}/mangalist | \n*UsersApi* | [**get_user_profile**](docs/UsersApi.md#get_user_profile) | **GET** /users/{username} | \n*UsersApi* | [**get_user_recommendations**](docs/UsersApi.md#get_user_recommendations) | **GET** /users/{username}/recommendations | \n*UsersApi* | [**get_user_reviews**](docs/UsersApi.md#get_user_reviews) | **GET** /users/{username}/reviews | \n*UsersApi* | [**get_user_statistics**](docs/UsersApi.md#get_user_statistics) | **GET** /users/{username}/statistics | \n*UsersApi* | [**get_user_updates**](docs/UsersApi.md#get_user_updates) | **GET** /users/{username}/userupdates | \n*UsersApi* | [**get_users_search**](docs/UsersApi.md#get_users_search) | **GET** /users | \n*WatchApi* | [**get_watch_popular_episodes**](docs/WatchApi.md#get_watch_popular_episodes) | **GET** /watch/episodes/popular | \n*WatchApi* | [**get_watch_popular_promos**](docs/WatchApi.md#get_watch_popular_promos) | **GET** /watch/promos/popular | \n*WatchApi* | [**get_watch_recent_episodes**](docs/WatchApi.md#get_watch_recent_episodes) | **GET** /watch/episodes | \n*WatchApi* | [**get_watch_recent_promos**](docs/WatchApi.md#get_watch_recent_promos) | **GET** /watch/promos | \n\n\n## Documentation For Models\n\n - [Anime](docs/Anime.md)\n - [AnimeCharacters](docs/AnimeCharacters.md)\n - [AnimeCharactersDataInner](docs/AnimeCharactersDataInner.md)\n - [AnimeCharactersDataInnerCharacter](docs/AnimeCharactersDataInnerCharacter.md)\n - [AnimeCharactersDataInnerVoiceActorsInner](docs/AnimeCharactersDataInnerVoiceActorsInner.md)\n - [AnimeCharactersDataInnerVoiceActorsInnerPerson](docs/AnimeCharactersDataInnerVoiceActorsInnerPerson.md)\n - [AnimeEpisode](docs/AnimeEpisode.md)\n - [AnimeEpisodes](docs/AnimeEpisodes.md)\n - [AnimeEpisodesAllOfData](docs/AnimeEpisodesAllOfData.md)\n - [AnimeFull](docs/AnimeFull.md)\n - [AnimeFullExternalInner](docs/AnimeFullExternalInner.md)\n - [AnimeFullRelationsInner](docs/AnimeFullRelationsInner.md)\n - [AnimeFullTheme](docs/AnimeFullTheme.md)\n - [AnimeImages](docs/AnimeImages.md)\n - [AnimeImagesJpg](docs/AnimeImagesJpg.md)\n - [AnimeImagesWebp](docs/AnimeImagesWebp.md)\n - [AnimeMeta](docs/AnimeMeta.md)\n - [AnimeNews](docs/AnimeNews.md)\n - [AnimeRelations](docs/AnimeRelations.md)\n - [AnimeReview](docs/AnimeReview.md)\n - [AnimeReviews](docs/AnimeReviews.md)\n - [AnimeReviewsAllOfData](docs/AnimeReviewsAllOfData.md)\n - [AnimeSearch](docs/AnimeSearch.md)\n - [AnimeSearchQueryOrderby](docs/AnimeSearchQueryOrderby.md)\n - [AnimeSearchQueryRating](docs/AnimeSearchQueryRating.md)\n - [AnimeSearchQueryStatus](docs/AnimeSearchQueryStatus.md)\n - [AnimeSearchQueryType](docs/AnimeSearchQueryType.md)\n - [AnimeStaff](docs/AnimeStaff.md)\n - [AnimeStaffDataInner](docs/AnimeStaffDataInner.md)\n - [AnimeStaffDataInnerPerson](docs/AnimeStaffDataInnerPerson.md)\n - [AnimeStatistics](docs/AnimeStatistics.md)\n - [AnimeStatisticsData](docs/AnimeStatisticsData.md)\n - [AnimeStatisticsDataScoresInner](docs/AnimeStatisticsDataScoresInner.md)\n - [AnimeThemes](docs/AnimeThemes.md)\n - [AnimeUserupdates](docs/AnimeUserupdates.md)\n - [AnimeUserupdatesAllOfData](docs/AnimeUserupdatesAllOfData.md)\n - [AnimeVideos](docs/AnimeVideos.md)\n - [AnimeVideosData](docs/AnimeVideosData.md)\n - [AnimeVideosDataEpisodesInner](docs/AnimeVideosDataEpisodesInner.md)\n - [AnimeVideosDataMusicVideosInner](docs/AnimeVideosDataMusicVideosInner.md)\n - [AnimeVideosDataMusicVideosInnerMeta](docs/AnimeVideosDataMusicVideosInnerMeta.md)\n - [AnimeVideosDataPromoInner](docs/AnimeVideosDataPromoInner.md)\n - [AnimeVideosEpisodes](docs/AnimeVideosEpisodes.md)\n - [AnimeVideosEpisodesAllOfData](docs/AnimeVideosEpisodesAllOfData.md)\n - [Broadcast](docs/Broadcast.md)\n - [Character](docs/Character.md)\n - [CharacterAnime](docs/CharacterAnime.md)\n - [CharacterAnimeDataInner](docs/CharacterAnimeDataInner.md)\n - [CharacterFull](docs/CharacterFull.md)\n - [CharacterFullMangaInner](docs/CharacterFullMangaInner.md)\n - [CharacterFullVoicesInner](docs/CharacterFullVoicesInner.md)\n - [CharacterImages](docs/CharacterImages.md)\n - [CharacterImagesJpg](docs/CharacterImagesJpg.md)\n - [CharacterImagesWebp](docs/CharacterImagesWebp.md)\n - [CharacterManga](docs/CharacterManga.md)\n - [CharacterMeta](docs/CharacterMeta.md)\n - [CharacterPictures](docs/CharacterPictures.md)\n - [CharacterPicturesDataInner](docs/CharacterPicturesDataInner.md)\n - [CharacterVoiceActors](docs/CharacterVoiceActors.md)\n - [CharactersSearch](docs/CharactersSearch.md)\n - [CharactersSearchQueryOrderby](docs/CharactersSearchQueryOrderby.md)\n - [Club](docs/Club.md)\n - [ClubMember](docs/ClubMember.md)\n - [ClubMemberDataInner](docs/ClubMemberDataInner.md)\n - [ClubRelations](docs/ClubRelations.md)\n - [ClubRelationsData](docs/ClubRelationsData.md)\n - [ClubSearchQueryCategory](docs/ClubSearchQueryCategory.md)\n - [ClubSearchQueryOrderby](docs/ClubSearchQueryOrderby.md)\n - [ClubSearchQueryType](docs/ClubSearchQueryType.md)\n - [ClubStaff](docs/ClubStaff.md)\n - [ClubStaffDataInner](docs/ClubStaffDataInner.md)\n - [ClubsSearch](docs/ClubsSearch.md)\n - [CommonImages](docs/CommonImages.md)\n - [Daterange](docs/Daterange.md)\n - [DaterangeProp](docs/DaterangeProp.md)\n - [DaterangePropFrom](docs/DaterangePropFrom.md)\n - [DaterangePropTo](docs/DaterangePropTo.md)\n - [EntryMeta](docs/EntryMeta.md)\n - [EntryRecommendations](docs/EntryRecommendations.md)\n - [ExternalLinks](docs/ExternalLinks.md)\n - [Forum](docs/Forum.md)\n - [ForumDataInner](docs/ForumDataInner.md)\n - [ForumDataInnerLastComment](docs/ForumDataInnerLastComment.md)\n - [Genre](docs/Genre.md)\n - [GenreQueryFilter](docs/GenreQueryFilter.md)\n - [Genres](docs/Genres.md)\n - [GetAnimeById200Response](docs/GetAnimeById200Response.md)\n - [GetAnimeEpisodeById200Response](docs/GetAnimeEpisodeById200Response.md)\n - [GetAnimeFullById200Response](docs/GetAnimeFullById200Response.md)\n - [GetAnimeRelations200Response](docs/GetAnimeRelations200Response.md)\n - [GetCharacterById200Response](docs/GetCharacterById200Response.md)\n - [GetCharacterFullById200Response](docs/GetCharacterFullById200Response.md)\n - [GetClubMembers200Response](docs/GetClubMembers200Response.md)\n - [GetClubsById200Response](docs/GetClubsById200Response.md)\n - [GetMangaById200Response](docs/GetMangaById200Response.md)\n - [GetMangaFullById200Response](docs/GetMangaFullById200Response.md)\n - [GetPersonById200Response](docs/GetPersonById200Response.md)\n - [GetPersonFullById200Response](docs/GetPersonFullById200Response.md)\n - [GetProducerById200Response](docs/GetProducerById200Response.md)\n - [GetProducerFullById200Response](docs/GetProducerFullById200Response.md)\n - [GetRandomUsers200Response](docs/GetRandomUsers200Response.md)\n - [GetTopReviews200Response](docs/GetTopReviews200Response.md)\n - [GetTopReviews200ResponseData](docs/GetTopReviews200ResponseData.md)\n - [GetTopReviews200ResponseDataAllOfDataInner](docs/GetTopReviews200ResponseDataAllOfDataInner.md)\n - [GetTopReviews200ResponseDataAllOfDataInnerAnyOf](docs/GetTopReviews200ResponseDataAllOfDataInnerAnyOf.md)\n - [GetTopReviews200ResponseDataAllOfDataInnerAnyOf1](docs/GetTopReviews200ResponseDataAllOfDataInnerAnyOf1.md)\n - [GetUserById200Response](docs/GetUserById200Response.md)\n - [GetUserFavorites200Response](docs/GetUserFavorites200Response.md)\n - [GetUserFullProfile200Response](docs/GetUserFullProfile200Response.md)\n - [History](docs/History.md)\n - [Magazine](docs/Magazine.md)\n - [Magazines](docs/Magazines.md)\n - [MagazinesQueryOrderby](docs/MagazinesQueryOrderby.md)\n - [MalUrl](docs/MalUrl.md)\n - [MalUrl2](docs/MalUrl2.md)\n - [Manga](docs/Manga.md)\n - [MangaCharacters](docs/MangaCharacters.md)\n - [MangaCharactersDataInner](docs/MangaCharactersDataInner.md)\n - [MangaFull](docs/MangaFull.md)\n - [MangaImages](docs/MangaImages.md)\n - [MangaMeta](docs/MangaMeta.md)\n - [MangaNews](docs/MangaNews.md)\n - [MangaPictures](docs/MangaPictures.md)\n - [MangaReview](docs/MangaReview.md)\n - [MangaReviewReactions](docs/MangaReviewReactions.md)\n - [MangaReviews](docs/MangaReviews.md)\n - [MangaReviewsAllOfData](docs/MangaReviewsAllOfData.md)\n - [MangaSearch](docs/MangaSearch.md)\n - [MangaSearchQueryOrderby](docs/MangaSearchQueryOrderby.md)\n - [MangaSearchQueryStatus](docs/MangaSearchQueryStatus.md)\n - [MangaSearchQueryType](docs/MangaSearchQueryType.md)\n - [MangaStatistics](docs/MangaStatistics.md)\n - [MangaStatisticsData](docs/MangaStatisticsData.md)\n - [MangaUserupdates](docs/MangaUserupdates.md)\n - [MangaUserupdatesAllOfData](docs/MangaUserupdatesAllOfData.md)\n - [Moreinfo](docs/Moreinfo.md)\n - [MoreinfoData](docs/MoreinfoData.md)\n - [News](docs/News.md)\n - [NewsDataInner](docs/NewsDataInner.md)\n - [Pagination](docs/Pagination.md)\n - [PaginationPagination](docs/PaginationPagination.md)\n - [PaginationPlus](docs/PaginationPlus.md)\n - [PaginationPlusPagination](docs/PaginationPlusPagination.md)\n - [PaginationPlusPaginationItems](docs/PaginationPlusPaginationItems.md)\n - [PeopleImages](docs/PeopleImages.md)\n - [PeopleSearch](docs/PeopleSearch.md)\n - [PeopleSearchAllOfData](docs/PeopleSearchAllOfData.md)\n - [PeopleSearchQueryOrderby](docs/PeopleSearchQueryOrderby.md)\n - [Person](docs/Person.md)\n - [PersonAnime](docs/PersonAnime.md)\n - [PersonAnimeDataInner](docs/PersonAnimeDataInner.md)\n - [PersonFull](docs/PersonFull.md)\n - [PersonFullMangaInner](docs/PersonFullMangaInner.md)\n - [PersonFullVoicesInner](docs/PersonFullVoicesInner.md)\n - [PersonManga](docs/PersonManga.md)\n - [PersonMeta](docs/PersonMeta.md)\n - [PersonPictures](docs/PersonPictures.md)\n - [PersonVoiceActingRoles](docs/PersonVoiceActingRoles.md)\n - [Pictures](docs/Pictures.md)\n - [PicturesDataInner](docs/PicturesDataInner.md)\n - [PicturesVariants](docs/PicturesVariants.md)\n - [PicturesVariantsDataInner](docs/PicturesVariantsDataInner.md)\n - [Producer](docs/Producer.md)\n - [ProducerFull](docs/ProducerFull.md)\n - [Producers](docs/Producers.md)\n - [ProducersQueryOrderby](docs/ProducersQueryOrderby.md)\n - [Random](docs/Random.md)\n - [RandomDataInner](docs/RandomDataInner.md)\n - [Recommendations](docs/Recommendations.md)\n - [RecommendationsAllOfData](docs/RecommendationsAllOfData.md)\n - [RecommendationsAllOfEntry](docs/RecommendationsAllOfEntry.md)\n - [Relation](docs/Relation.md)\n - [ReviewsCollection](docs/ReviewsCollection.md)\n - [ReviewsCollectionDataInner](docs/ReviewsCollectionDataInner.md)\n - [Schedules](docs/Schedules.md)\n - [SearchQuerySort](docs/SearchQuerySort.md)\n - [Seasons](docs/Seasons.md)\n - [SeasonsDataInner](docs/SeasonsDataInner.md)\n - [StreamingLinks](docs/StreamingLinks.md)\n - [Title](docs/Title.md)\n - [TopAnimeFilter](docs/TopAnimeFilter.md)\n - [TopMangaFilter](docs/TopMangaFilter.md)\n - [TopReviewsTypeEnum](docs/TopReviewsTypeEnum.md)\n - [Trailer](docs/Trailer.md)\n - [TrailerBase](docs/TrailerBase.md)\n - [TrailerImages](docs/TrailerImages.md)\n - [TrailerImagesImages](docs/TrailerImagesImages.md)\n - [UserAbout](docs/UserAbout.md)\n - [UserAboutDataInner](docs/UserAboutDataInner.md)\n - [UserAnimeListStatusFilter](docs/UserAnimeListStatusFilter.md)\n - [UserById](docs/UserById.md)\n - [UserClubs](docs/UserClubs.md)\n - [UserClubsAllOfData](docs/UserClubsAllOfData.md)\n - [UserFavorites](docs/UserFavorites.md)\n - [UserFavoritesAnimeInner](docs/UserFavoritesAnimeInner.md)\n - [UserFavoritesCharactersInner](docs/UserFavoritesCharactersInner.md)\n - [UserFavoritesMangaInner](docs/UserFavoritesMangaInner.md)\n - [UserFriends](docs/UserFriends.md)\n - [UserFriendsAllOfData](docs/UserFriendsAllOfData.md)\n - [UserHistory](docs/UserHistory.md)\n - [UserImages](docs/UserImages.md)\n - [UserImagesJpg](docs/UserImagesJpg.md)\n - [UserImagesWebp](docs/UserImagesWebp.md)\n - [UserMangaListStatusFilter](docs/UserMangaListStatusFilter.md)\n - [UserMeta](docs/UserMeta.md)\n - [UserProfile](docs/UserProfile.md)\n - [UserProfileFull](docs/UserProfileFull.md)\n - [UserProfileFullStatistics](docs/UserProfileFullStatistics.md)\n - [UserProfileFullStatisticsAnime](docs/UserProfileFullStatisticsAnime.md)\n - [UserProfileFullStatisticsManga](docs/UserProfileFullStatisticsManga.md)\n - [UserStatistics](docs/UserStatistics.md)\n - [UserUpdates](docs/UserUpdates.md)\n - [UserUpdatesData](docs/UserUpdatesData.md)\n - [UserUpdatesDataAnimeInner](docs/UserUpdatesDataAnimeInner.md)\n - [UserUpdatesDataMangaInner](docs/UserUpdatesDataMangaInner.md)\n - [UsersSearch](docs/UsersSearch.md)\n - [UsersSearchAllOfData](docs/UsersSearchAllOfData.md)\n - [UsersSearchQueryGender](docs/UsersSearchQueryGender.md)\n - [UsersTemp](docs/UsersTemp.md)\n - [UsersTempDataInner](docs/UsersTempDataInner.md)\n - [UsersTempDataInnerAnimeStats](docs/UsersTempDataInnerAnimeStats.md)\n - [UsersTempDataInnerFavorites](docs/UsersTempDataInnerFavorites.md)\n - [UsersTempDataInnerImages](docs/UsersTempDataInnerImages.md)\n - [UsersTempDataInnerImagesJpg](docs/UsersTempDataInnerImagesJpg.md)\n - [UsersTempDataInnerImagesWebp](docs/UsersTempDataInnerImagesWebp.md)\n - [UsersTempDataInnerMangaStats](docs/UsersTempDataInnerMangaStats.md)\n - [WatchEpisodes](docs/WatchEpisodes.md)\n - [WatchEpisodesAllOfData](docs/WatchEpisodesAllOfData.md)\n - [WatchEpisodesAllOfEpisodes](docs/WatchEpisodesAllOfEpisodes.md)\n - [WatchPromos](docs/WatchPromos.md)\n - [WatchPromosAllOfData](docs/WatchPromosAllOfData.md)\n\n\n\u003ca id=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n","funding_links":["https://www.patreon.com/jikan"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Fopenapi-jikan-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmudindev%2Fopenapi-jikan-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Fopenapi-jikan-python/lists"}