Julia client for themoviedb.
Please apply for your themoviedb API Read Access Token first. Then paste your api key at $HOME/.config/TMDB_KEY.txt
. Or save api key to TMDB_KEY
environment variable.
Before calling any interface, you need to initialize the TMDB API with init_api()
.
For example, get a list of movies that are currently in theatres:
julia> using TheMovieDB
julia> api = init_api()
julia> first(movie_now_playing_list(api))
{
"dates": {
"maximum": "2024-05-08",
"minimum": "2024-03-27"
},
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/qrGtVFxaD8c7et0jUtaYhyTzzPg.jpg",
"genre_ids": [
28,
878,
12
],
"id": 823464,
"original_language": "en",
"original_title": "Godzilla x Kong: The New Empire",
"overview": "Following their explosive showdown, Godzilla and Kong must reunite against a colossal undiscovered threat hidden within our world, challenging their very existence – and our own.",
"popularity": 1773.662,
"poster_path": "/1DTP1Ph4uzNO6ofRUm7eAimWoKD.jpg",
"release_date": "2024-03-27",
"title": "Godzilla x Kong: The New Empire",
"video": false,
"vote_average": 6.462,
"vote_count": 956
}...
]
}
This API client was generated by the OpenAPI Generator project. By using the openapi-spec from a remote server, you can easily generate an API client.
- API version: 3
- Generator version: 7.5.0
- Build package: org.openapitools.codegen.languages.JuliaClientCodegen
Class | Method |
---|---|
DefaultApi | account_add_favorite POST /3/account/{account_id}/favorite Add Favorite |
DefaultApi | account_add_to_watchlist POST /3/account/{account_id}/watchlist Add To Watchlist |
DefaultApi | account_details GET /3/account/{account_id} Details |
DefaultApi | account_favorite_tv GET /3/account/{account_id}/favorite/tv Favorite TV |
DefaultApi | account_get_favorites GET /3/account/{account_id}/favorite/movies Favorite Movies |
DefaultApi | account_lists GET /3/account/{account_id}/lists Lists |
DefaultApi | account_rated_movies GET /3/account/{account_id}/rated/movies Rated Movies |
DefaultApi | account_rated_tv GET /3/account/{account_id}/rated/tv Rated TV |
DefaultApi | account_rated_tv_episodes GET /3/account/{account_id}/rated/tv/episodes Rated TV Episodes |
DefaultApi | account_watchlist_movies GET /3/account/{account_id}/watchlist/movies Watchlist Movies |
DefaultApi | account_watchlist_tv GET /3/account/{account_id}/watchlist/tv Watchlist TV |
DefaultApi | alternative_names_copy GET /3/network/{network_id}/images Images |
DefaultApi | authentication_create_guest_session GET /3/authentication/guest_session/new Create Guest Session |
DefaultApi | authentication_create_request_token GET /3/authentication/token/new Create Request Token |
DefaultApi | authentication_create_session POST /3/authentication/session/new Create Session |
DefaultApi | authentication_create_session_from_login POST /3/authentication/token/validate_with_login Create Session (with login) |
DefaultApi | authentication_create_session_from_v4_token POST /3/authentication/session/convert/4 Create Session (from v4 token) |
DefaultApi | authentication_delete_session DELETE /3/authentication/session Delete Session |
DefaultApi | authentication_validate_key GET /3/authentication Validate Key |
DefaultApi | certification_movie_list GET /3/certification/movie/list Movie Certifications |
DefaultApi | certifications_tv_list GET /3/certification/tv/list TV Certifications |
DefaultApi | changes_movie_list GET /3/movie/changes Movie List |
DefaultApi | changes_people_list GET /3/person/changes People List |
DefaultApi | changes_tv_list GET /3/tv/changes TV List |
DefaultApi | collection_details GET /3/collection/{collection_id} Details |
DefaultApi | collection_images GET /3/collection/{collection_id}/images Images |
DefaultApi | collection_translations GET /3/collection/{collection_id}/translations Translations |
DefaultApi | company_alternative_names GET /3/company/{company_id}/alternative_names Alternative Names |
DefaultApi | company_details GET /3/company/{company_id} Details |
DefaultApi | company_images GET /3/company/{company_id}/images Images |
DefaultApi | configuration_countries GET /3/configuration/countries Countries |
DefaultApi | configuration_details GET /3/configuration Details |
DefaultApi | configuration_jobs GET /3/configuration/jobs Jobs |
DefaultApi | configuration_languages GET /3/configuration/languages Languages |
DefaultApi | configuration_primary_translations GET /3/configuration/primary_translations Primary Translations |
DefaultApi | configuration_timezones GET /3/configuration/timezones Timezones |
DefaultApi | credit_details GET /3/credit/{credit_id} Details |
DefaultApi | details_copy GET /3/network/{network_id}/alternative_names Alternative Names |
DefaultApi | discover_movie GET /3/discover/movie Movie |
DefaultApi | discover_tv GET /3/discover/tv TV |
DefaultApi | find_by_id GET /3/find/{external_id} Find By ID |
DefaultApi | genre_movie_list GET /3/genre/movie/list Movie List |
DefaultApi | genre_tv_list GET /3/genre/tv/list TV List |
DefaultApi | guest_session_rated_movies GET /3/guest_session/{guest_session_id}/rated/movies Rated Movies |
DefaultApi | guest_session_rated_tv GET /3/guest_session/{guest_session_id}/rated/tv Rated TV |
DefaultApi | guest_session_rated_tv_episodes GET /3/guest_session/{guest_session_id}/rated/tv/episodes Rated TV Episodes |
DefaultApi | keyword_details GET /3/keyword/{keyword_id} Details |
DefaultApi | keyword_movies GET /3/keyword/{keyword_id}/movies Movies |
DefaultApi | list_add_movie POST /3/list/{list_id}/add_item Add Movie |
DefaultApi | list_check_item_status GET /3/list/{list_id}/item_status Check Item Status |
DefaultApi | list_clear POST /3/list/{list_id}/clear Clear |
DefaultApi | list_create POST /3/list Create |
DefaultApi | list_delete DELETE /3/list/{list_id} Delete |
DefaultApi | list_details GET /3/list/{list_id} Details |
DefaultApi | list_remove_movie POST /3/list/{list_id}/remove_item Remove Movie |
DefaultApi | lists_copy GET /3/tv/{series_id}/lists Lists |
DefaultApi | movie_account_states GET /3/movie/{movie_id}/account_states Account States |
DefaultApi | movie_add_rating POST /3/movie/{movie_id}/rating Add Rating |
DefaultApi | movie_alternative_titles GET /3/movie/{movie_id}/alternative_titles Alternative Titles |
DefaultApi | movie_changes GET /3/movie/{movie_id}/changes Changes |
DefaultApi | movie_credits GET /3/movie/{movie_id}/credits Credits |
DefaultApi | movie_delete_rating DELETE /3/movie/{movie_id}/rating Delete Rating |
DefaultApi | movie_details GET /3/movie/{movie_id} Details |
DefaultApi | movie_external_ids GET /3/movie/{movie_id}/external_ids External IDs |
DefaultApi | movie_images GET /3/movie/{movie_id}/images Images |
DefaultApi | movie_keywords GET /3/movie/{movie_id}/keywords Keywords |
DefaultApi | movie_latest_id GET /3/movie/latest Latest |
DefaultApi | movie_lists GET /3/movie/{movie_id}/lists Lists |
DefaultApi | movie_now_playing_list GET /3/movie/now_playing Now Playing |
DefaultApi | movie_popular_list GET /3/movie/popular Popular |
DefaultApi | movie_recommendations GET /3/movie/{movie_id}/recommendations Recommendations |
DefaultApi | movie_release_dates GET /3/movie/{movie_id}/release_dates Release Dates |
DefaultApi | movie_reviews GET /3/movie/{movie_id}/reviews Reviews |
DefaultApi | movie_similar GET /3/movie/{movie_id}/similar Similar |
DefaultApi | movie_top_rated_list GET /3/movie/top_rated Top Rated |
DefaultApi | movie_translations GET /3/movie/{movie_id}/translations Translations |
DefaultApi | movie_upcoming_list GET /3/movie/upcoming Upcoming |
DefaultApi | movie_videos GET /3/movie/{movie_id}/videos Videos |
DefaultApi | movie_watch_providers GET /3/movie/{movie_id}/watch/providers Watch Providers |
DefaultApi | network_details GET /3/network/{network_id} Details |
DefaultApi | person_changes GET /3/person/{person_id}/changes Changes |
DefaultApi | person_combined_credits GET /3/person/{person_id}/combined_credits Combined Credits |
DefaultApi | person_details GET /3/person/{person_id} Details |
DefaultApi | person_external_ids GET /3/person/{person_id}/external_ids External IDs |
DefaultApi | person_images GET /3/person/{person_id}/images Images |
DefaultApi | person_latest_id GET /3/person/latest Latest |
DefaultApi | person_movie_credits GET /3/person/{person_id}/movie_credits Movie Credits |
DefaultApi | person_popular_list GET /3/person/popular Popular |
DefaultApi | person_tagged_images GET /3/person/{person_id}/tagged_images Tagged Images |
DefaultApi | person_tv_credits GET /3/person/{person_id}/tv_credits TV Credits |
DefaultApi | review_details GET /3/review/{review_id} Details |
DefaultApi | search_collection GET /3/search/collection Collection |
DefaultApi | search_company GET /3/search/company Company |
DefaultApi | search_keyword GET /3/search/keyword Keyword |
DefaultApi | search_movie GET /3/search/movie Movie |
DefaultApi | search_multi GET /3/search/multi Multi |
DefaultApi | search_person GET /3/search/person Person |
DefaultApi | search_tv GET /3/search/tv TV |
DefaultApi | translations GET /3/person/{person_id}/translations Translations |
DefaultApi | trending_all GET /3/trending/all/{time_window} All |
DefaultApi | trending_movies GET /3/trending/movie/{time_window} Movies |
DefaultApi | trending_people GET /3/trending/person/{time_window} People |
DefaultApi | trending_tv GET /3/trending/tv/{time_window} TV |
DefaultApi | tv_episode_account_states GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/account_states Account States |
DefaultApi | tv_episode_add_rating POST /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/rating Add Rating |
DefaultApi | tv_episode_changes_by_id GET /3/tv/episode/{episode_id}/changes Changes |
DefaultApi | tv_episode_credits GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/credits Credits |
DefaultApi | tv_episode_delete_rating DELETE /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/rating Delete Rating |
DefaultApi | tv_episode_details GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number} Details |
DefaultApi | tv_episode_external_ids GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/external_ids External IDs |
DefaultApi | tv_episode_group_details GET /3/tv/episode_group/{tv_episode_group_id} Details |
DefaultApi | tv_episode_images GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/images Images |
DefaultApi | tv_episode_translations GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/translations Translations |
DefaultApi | tv_episode_videos GET /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/videos Videos |
DefaultApi | tv_season_account_states GET /3/tv/{series_id}/season/{season_number}/account_states Account States |
DefaultApi | tv_season_aggregate_credits GET /3/tv/{series_id}/season/{season_number}/aggregate_credits Aggregate Credits |
DefaultApi | tv_season_changes_by_id GET /3/tv/season/{season_id}/changes Changes |
DefaultApi | tv_season_credits GET /3/tv/{series_id}/season/{season_number}/credits Credits |
DefaultApi | tv_season_details GET /3/tv/{series_id}/season/{season_number} Details |
DefaultApi | tv_season_external_ids GET /3/tv/{series_id}/season/{season_number}/external_ids External IDs |
DefaultApi | tv_season_images GET /3/tv/{series_id}/season/{season_number}/images Images |
DefaultApi | tv_season_translations GET /3/tv/{series_id}/season/{season_number}/translations Translations |
DefaultApi | tv_season_videos GET /3/tv/{series_id}/season/{season_number}/videos Videos |
DefaultApi | tv_season_watch_providers GET /3/tv/{series_id}/season/{season_number}/watch/providers Watch Providers |
DefaultApi | tv_series_account_states GET /3/tv/{series_id}/account_states Account States |
DefaultApi | tv_series_add_rating POST /3/tv/{series_id}/rating Add Rating |
DefaultApi | tv_series_aggregate_credits GET /3/tv/{series_id}/aggregate_credits Aggregate Credits |
DefaultApi | tv_series_airing_today_list GET /3/tv/airing_today Airing Today |
DefaultApi | tv_series_alternative_titles GET /3/tv/{series_id}/alternative_titles Alternative Titles |
DefaultApi | tv_series_changes GET /3/tv/{series_id}/changes Changes |
DefaultApi | tv_series_content_ratings GET /3/tv/{series_id}/content_ratings Content Ratings |
DefaultApi | tv_series_credits GET /3/tv/{series_id}/credits Credits |
DefaultApi | tv_series_delete_rating DELETE /3/tv/{series_id}/rating Delete Rating |
DefaultApi | tv_series_details GET /3/tv/{series_id} Details |
DefaultApi | tv_series_episode_groups GET /3/tv/{series_id}/episode_groups Episode Groups |
DefaultApi | tv_series_external_ids GET /3/tv/{series_id}/external_ids External IDs |
DefaultApi | tv_series_images GET /3/tv/{series_id}/images Images |
DefaultApi | tv_series_keywords GET /3/tv/{series_id}/keywords Keywords |
DefaultApi | tv_series_latest_id GET /3/tv/latest Latest |
DefaultApi | tv_series_on_the_air_list GET /3/tv/on_the_air On The Air |
DefaultApi | tv_series_popular_list GET /3/tv/popular Popular |
DefaultApi | tv_series_recommendations GET /3/tv/{series_id}/recommendations Recommendations |
DefaultApi | tv_series_reviews GET /3/tv/{series_id}/reviews Reviews |
DefaultApi | tv_series_screened_theatrically GET /3/tv/{series_id}/screened_theatrically Screened Theatrically |
DefaultApi | tv_series_similar GET /3/tv/{series_id}/similar Similar |
DefaultApi | tv_series_top_rated_list GET /3/tv/top_rated Top Rated |
DefaultApi | tv_series_translations GET /3/tv/{series_id}/translations Translations |
DefaultApi | tv_series_videos GET /3/tv/{series_id}/videos Videos |
DefaultApi | tv_series_watch_providers GET /3/tv/{series_id}/watch/providers Watch Providers |
DefaultApi | watch_provider_tv_list GET /3/watch/providers/tv TV Providers |
DefaultApi | watch_providers_available_regions GET /3/watch/providers/regions Available Regions |
DefaultApi | watch_providers_movie_list GET /3/watch/providers/movie Movie Providers |
- AccountDetails200Response
- AccountDetails200ResponseAvatar
- AccountDetails200ResponseAvatarGravatar
- AccountDetails200ResponseAvatarTmdb
- AccountFavoriteTv200Response
- AccountFavoriteTv200ResponseResultsInner
- AccountGetFavorites200Response
- AccountGetFavorites200ResponseResultsInner
- AccountLists200Response
- AccountLists200ResponseResultsInner
- AccountRatedMovies200Response
- AccountRatedMovies200ResponseResultsInner
- AccountRatedTv200Response
- AccountRatedTv200ResponseResultsInner
- AccountRatedTvEpisodes200Response
- AccountRatedTvEpisodes200ResponseResultsInner
- AccountWatchlistMovies200Response
- AccountWatchlistMovies200ResponseResultsInner
- AccountWatchlistTv200Response
- AccountWatchlistTv200ResponseResultsInner
- AlternativeNamesCopy200Response
- AlternativeNamesCopy200ResponseLogosInner
- AuthenticationCreateGuestSession200Response
- AuthenticationCreateRequestToken200Response
- AuthenticationCreateSession200Response
- AuthenticationCreateSessionFromLogin200Response
- AuthenticationCreateSessionFromV4Token200Response
- AuthenticationDeleteSession200Response
- AuthenticationValidateKey200Response
- AuthenticationValidateKey401Response
- CertificationMovieList200Response
- CertificationMovieList200ResponseCertifications
- CertificationMovieList200ResponseCertificationsARInner
- CertificationMovieList200ResponseCertificationsAUInner
- CertificationMovieList200ResponseCertificationsBGInner
- CertificationMovieList200ResponseCertificationsBRInner
- CertificationMovieList200ResponseCertificationsCAInner
- CertificationMovieList200ResponseCertificationsCAQCInner
- CertificationMovieList200ResponseCertificationsCHInner
- CertificationMovieList200ResponseCertificationsDEInner
- CertificationMovieList200ResponseCertificationsESInner
- CertificationMovieList200ResponseCertificationsFIInner
- CertificationMovieList200ResponseCertificationsFRInner
- CertificationMovieList200ResponseCertificationsGBInner
- CertificationMovieList200ResponseCertificationsGRInner
- CertificationMovieList200ResponseCertificationsHKInner
- CertificationMovieList200ResponseCertificationsHUInner
- CertificationMovieList200ResponseCertificationsIDInner
- CertificationMovieList200ResponseCertificationsIEInner
- CertificationMovieList200ResponseCertificationsILInner
- CertificationMovieList200ResponseCertificationsINInner
- CertificationMovieList200ResponseCertificationsJPInner
- CertificationMovieList200ResponseCertificationsKRInner
- CertificationMovieList200ResponseCertificationsLUInner
- CertificationMovieList200ResponseCertificationsLVInner
- CertificationMovieList200ResponseCertificationsMOInner
- CertificationMovieList200ResponseCertificationsMXInner
- CertificationMovieList200ResponseCertificationsNLInner
- CertificationMovieList200ResponseCertificationsNOInner
- CertificationMovieList200ResponseCertificationsNZInner
- CertificationMovieList200ResponseCertificationsPRInner
- CertificationMovieList200ResponseCertificationsPTInner
- CertificationMovieList200ResponseCertificationsRUInner
- CertificationMovieList200ResponseCertificationsSEInner
- CertificationMovieList200ResponseCertificationsSGInner
- CertificationMovieList200ResponseCertificationsSKInner
- CertificationMovieList200ResponseCertificationsTHInner
- CertificationMovieList200ResponseCertificationsTRInner
- CertificationMovieList200ResponseCertificationsTWInner
- CertificationMovieList200ResponseCertificationsUSInner
- CertificationMovieList200ResponseCertificationsVIInner
- CertificationMovieList200ResponseCertificationsZAInner
- CertificationsTvList200Response
- CertificationsTvList200ResponseCertifications
- CertificationsTvList200ResponseCertificationsARInner
- CertificationsTvList200ResponseCertificationsAUInner
- CertificationsTvList200ResponseCertificationsBGInner
- CertificationsTvList200ResponseCertificationsBRInner
- CertificationsTvList200ResponseCertificationsCAInner
- CertificationsTvList200ResponseCertificationsCAQCInner
- CertificationsTvList200ResponseCertificationsDEInner
- CertificationsTvList200ResponseCertificationsDKInner
- CertificationsTvList200ResponseCertificationsFIInner
- CertificationsTvList200ResponseCertificationsGBInner
- CertificationsTvList200ResponseCertificationsGRInner
- CertificationsTvList200ResponseCertificationsHUInner
- CertificationsTvList200ResponseCertificationsIDInner
- CertificationsTvList200ResponseCertificationsILInner
- CertificationsTvList200ResponseCertificationsINInner
- CertificationsTvList200ResponseCertificationsITInner
- CertificationsTvList200ResponseCertificationsKRInner
- CertificationsTvList200ResponseCertificationsLTInner
- CertificationsTvList200ResponseCertificationsMAInner
- CertificationsTvList200ResponseCertificationsMXInner
- CertificationsTvList200ResponseCertificationsMYInner
- CertificationsTvList200ResponseCertificationsNOInner
- CertificationsTvList200ResponseCertificationsNZInner
- CertificationsTvList200ResponseCertificationsPLInner
- CertificationsTvList200ResponseCertificationsPRInner
- CertificationsTvList200ResponseCertificationsPTInner
- CertificationsTvList200ResponseCertificationsRUInner
- CertificationsTvList200ResponseCertificationsSEInner
- CertificationsTvList200ResponseCertificationsTHInner
- CertificationsTvList200ResponseCertificationsTRInner
- CertificationsTvList200ResponseCertificationsTWInner
- CertificationsTvList200ResponseCertificationsUSInner
- CertificationsTvList200ResponseCertificationsZAInner
- ChangesMovieList200Response
- ChangesMovieList200ResponseResultsInner
- ChangesPeopleList200Response
- ChangesPeopleList200ResponseResultsInner
- ChangesTvList200Response
- ChangesTvList200ResponseResultsInner
- CollectionDetails200Response
- CollectionDetails200ResponsePartsInner
- CollectionImages200Response
- CollectionImages200ResponseBackdropsInner
- CollectionImages200ResponsePostersInner
- CollectionTranslations200Response
- CollectionTranslations200ResponseTranslationsInner
- CollectionTranslations200ResponseTranslationsInnerData
- CompanyAlternativeNames200Response
- CompanyAlternativeNames200ResponseResultsInner
- CompanyDetails200Response
- CompanyImages200Response
- CompanyImages200ResponseLogosInner
- ConfigurationDetails200Response
- ConfigurationDetails200ResponseImages
- ConfigurationJobs200ResponseInner
- ConfigurationLanguages200ResponseInner
- ConfigurationTimezones200ResponseInner
- CreditDetails200Response
- CreditDetails200ResponseMedia
- CreditDetails200ResponseMediaSeasonsInner
- CreditDetails200ResponsePerson
- DetailsCopy200Response
- DetailsCopy200ResponseResultsInner
- DiscoverMovie200Response
- DiscoverMovie200ResponseResultsInner
- DiscoverTv200Response
- DiscoverTv200ResponseResultsInner
- FindById200Response
- FindById200ResponseMovieResultsInner
- GenreMovieList200Response
- GenreMovieList200ResponseGenresInner
- GenreTvList200Response
- GenreTvList200ResponseGenresInner
- GuestSessionRatedMovies200Response
- GuestSessionRatedMovies200ResponseResultsInner
- GuestSessionRatedTv200Response
- GuestSessionRatedTv200ResponseResultsInner
- GuestSessionRatedTvEpisodes200Response
- GuestSessionRatedTvEpisodes200ResponseResultsInner
- KeywordDetails200Response
- KeywordMovies200Response
- KeywordMovies200ResponseResultsInner
- ListAddMovieRequest
- ListCheckItemStatus200Response
- ListCreate200Response
- ListDelete200Response
- ListDetails200Response
- ListDetails200ResponseItemsInner
- ListsCopy200Response
- ListsCopy200ResponseResultsInner
- MovieAccountStates200Response
- MovieAccountStates200ResponseRated
- MovieAddRating200Response
- MovieAddRatingRequest
- MovieAlternativeTitles200Response
- MovieAlternativeTitles200ResponseTitlesInner
- MovieChanges200Response
- MovieChanges200ResponseChangesInner
- MovieChanges200ResponseChangesInnerItemsInner
- MovieChanges200ResponseChangesInnerItemsInnerValue
- MovieChanges200ResponseChangesInnerItemsInnerValuePoster
- MovieCredits200Response
- MovieCredits200ResponseCastInner
- MovieCredits200ResponseCrewInner
- MovieDeleteRating200Response
- MovieDetails200Response
- MovieDetails200ResponseGenresInner
- MovieDetails200ResponseProductionCompaniesInner
- MovieDetails200ResponseProductionCountriesInner
- MovieDetails200ResponseSpokenLanguagesInner
- MovieExternalIds200Response
- MovieImages200Response
- MovieImages200ResponseBackdropsInner
- MovieImages200ResponseLogosInner
- MovieImages200ResponsePostersInner
- MovieKeywords200Response
- MovieKeywords200ResponseKeywordsInner
- MovieLatestId200Response
- MovieLists200Response
- MovieLists200ResponseResultsInner
- MovieNowPlayingList200Response
- MovieNowPlayingList200ResponseDates
- MovieNowPlayingList200ResponseResultsInner
- MoviePopularList200Response
- MoviePopularList200ResponseResultsInner
- MovieReleaseDates200Response
- MovieReleaseDates200ResponseResultsInner
- MovieReleaseDates200ResponseResultsInnerReleaseDatesInner
- MovieReviews200Response
- MovieReviews200ResponseResultsInner
- MovieReviews200ResponseResultsInnerAuthorDetails
- MovieSimilar200Response
- MovieSimilar200ResponseResultsInner
- MovieTopRatedList200Response
- MovieTopRatedList200ResponseResultsInner
- MovieTranslations200Response
- MovieTranslations200ResponseTranslationsInner
- MovieTranslations200ResponseTranslationsInnerData
- MovieUpcomingList200Response
- MovieUpcomingList200ResponseDates
- MovieUpcomingList200ResponseResultsInner
- MovieVideos200Response
- MovieVideos200ResponseResultsInner
- MovieWatchProviders200Response
- MovieWatchProviders200ResponseResults
- MovieWatchProviders200ResponseResultsAE
- MovieWatchProviders200ResponseResultsAEFlatrateInner
- MovieWatchProviders200ResponseResultsAERentInner
- MovieWatchProviders200ResponseResultsAL
- MovieWatchProviders200ResponseResultsALBuyInner
- MovieWatchProviders200ResponseResultsAR
- MovieWatchProviders200ResponseResultsARBuyInner
- MovieWatchProviders200ResponseResultsARFlatrateInner
- MovieWatchProviders200ResponseResultsAT
- MovieWatchProviders200ResponseResultsATBuyInner
- MovieWatchProviders200ResponseResultsATFlatrateInner
- MovieWatchProviders200ResponseResultsAU
- MovieWatchProviders200ResponseResultsAUBuyInner
- MovieWatchProviders200ResponseResultsAUFlatrateInner
- MovieWatchProviders200ResponseResultsBA
- MovieWatchProviders200ResponseResultsBB
- MovieWatchProviders200ResponseResultsBBFlatrateInner
- MovieWatchProviders200ResponseResultsBE
- MovieWatchProviders200ResponseResultsBEFlatrateInner
- MovieWatchProviders200ResponseResultsBERentInner
- MovieWatchProviders200ResponseResultsBG
- MovieWatchProviders200ResponseResultsBGRentInner
- MovieWatchProviders200ResponseResultsBH
- MovieWatchProviders200ResponseResultsBHBuyInner
- MovieWatchProviders200ResponseResultsBO
- MovieWatchProviders200ResponseResultsBR
- MovieWatchProviders200ResponseResultsBS
- MovieWatchProviders200ResponseResultsCA
- MovieWatchProviders200ResponseResultsCAFlatrateInner
- MovieWatchProviders200ResponseResultsCARentInner
- MovieWatchProviders200ResponseResultsCH
- MovieWatchProviders200ResponseResultsCHBuyInner
- MovieWatchProviders200ResponseResultsCL
- MovieWatchProviders200ResponseResultsCLBuyInner
- MovieWatchProviders200ResponseResultsCO
- MovieWatchProviders200ResponseResultsCOBuyInner
- MovieWatchProviders200ResponseResultsCR
- MovieWatchProviders200ResponseResultsCV
- MovieWatchProviders200ResponseResultsCVBuyInner
- MovieWatchProviders200ResponseResultsCZ
- MovieWatchProviders200ResponseResultsCZBuyInner
- MovieWatchProviders200ResponseResultsCZRentInner
- MovieWatchProviders200ResponseResultsDE
- MovieWatchProviders200ResponseResultsDEBuyInner
- MovieWatchProviders200ResponseResultsDK
- MovieWatchProviders200ResponseResultsDKRentInner
- MovieWatchProviders200ResponseResultsDO
- MovieWatchProviders200ResponseResultsEC
- MovieWatchProviders200ResponseResultsECBuyInner
- MovieWatchProviders200ResponseResultsEE
- MovieWatchProviders200ResponseResultsEG
- MovieWatchProviders200ResponseResultsES
- MovieWatchProviders200ResponseResultsESAdsInner
- MovieWatchProviders200ResponseResultsFI
- MovieWatchProviders200ResponseResultsFJ
- MovieWatchProviders200ResponseResultsFR
- MovieWatchProviders200ResponseResultsFRRentInner
- MovieWatchProviders200ResponseResultsGB
- MovieWatchProviders200ResponseResultsGBBuyInner
- MovieWatchProviders200ResponseResultsGF
- MovieWatchProviders200ResponseResultsGFFlatrateInner
- MovieWatchProviders200ResponseResultsGI
- MovieWatchProviders200ResponseResultsGR
- MovieWatchProviders200ResponseResultsGT
- MovieWatchProviders200ResponseResultsHK
- MovieWatchProviders200ResponseResultsHKFlatrateInner
- MovieWatchProviders200ResponseResultsHN
- MovieWatchProviders200ResponseResultsHR
- MovieWatchProviders200ResponseResultsHRAdsInner
- MovieWatchProviders200ResponseResultsHU
- MovieWatchProviders200ResponseResultsID
- MovieWatchProviders200ResponseResultsIDFlatrateInner
- MovieWatchProviders200ResponseResultsIE
- MovieWatchProviders200ResponseResultsIL
- MovieWatchProviders200ResponseResultsILBuyInner
- MovieWatchProviders200ResponseResultsIN
- MovieWatchProviders200ResponseResultsINRentInner
- MovieWatchProviders200ResponseResultsIQ
- MovieWatchProviders200ResponseResultsIS
- MovieWatchProviders200ResponseResultsIT
- MovieWatchProviders200ResponseResultsITBuyInner
- MovieWatchProviders200ResponseResultsJM
- MovieWatchProviders200ResponseResultsJMFlatrateInner
- MovieWatchProviders200ResponseResultsJO
- MovieWatchProviders200ResponseResultsJP
- MovieWatchProviders200ResponseResultsJPFlatrateInner
- MovieWatchProviders200ResponseResultsJPRentInner
- MovieWatchProviders200ResponseResultsKR
- MovieWatchProviders200ResponseResultsKRBuyInner
- MovieWatchProviders200ResponseResultsKW
- MovieWatchProviders200ResponseResultsLB
- MovieWatchProviders200ResponseResultsLI
- MovieWatchProviders200ResponseResultsLIFlatrateInner
- MovieWatchProviders200ResponseResultsLT
- MovieWatchProviders200ResponseResultsLTRentInner
- MovieWatchProviders200ResponseResultsLV
- MovieWatchProviders200ResponseResultsMD
- MovieWatchProviders200ResponseResultsMDFlatrateInner
- MovieWatchProviders200ResponseResultsMK
- MovieWatchProviders200ResponseResultsMKFlatrateInner
- MovieWatchProviders200ResponseResultsMT
- MovieWatchProviders200ResponseResultsMU
- MovieWatchProviders200ResponseResultsMUBuyInner
- MovieWatchProviders200ResponseResultsMX
- MovieWatchProviders200ResponseResultsMY
- MovieWatchProviders200ResponseResultsMYFlatrateInner
- MovieWatchProviders200ResponseResultsMZ
- MovieWatchProviders200ResponseResultsMZRentInner
- MovieWatchProviders200ResponseResultsNL
- MovieWatchProviders200ResponseResultsNLBuyInner
- MovieWatchProviders200ResponseResultsNO
- MovieWatchProviders200ResponseResultsNZ
- MovieWatchProviders200ResponseResultsOM
- MovieWatchProviders200ResponseResultsPA
- MovieWatchProviders200ResponseResultsPE
- MovieWatchProviders200ResponseResultsPERentInner
- MovieWatchProviders200ResponseResultsPH
- MovieWatchProviders200ResponseResultsPK
- MovieWatchProviders200ResponseResultsPKFlatrateInner
- MovieWatchProviders200ResponseResultsPL
- MovieWatchProviders200ResponseResultsPLFlatrateInner
- MovieWatchProviders200ResponseResultsPS
- MovieWatchProviders200ResponseResultsPT
- MovieWatchProviders200ResponseResultsPTRentInner
- MovieWatchProviders200ResponseResultsPY
- MovieWatchProviders200ResponseResultsQA
- MovieWatchProviders200ResponseResultsRO
- MovieWatchProviders200ResponseResultsRS
- MovieWatchProviders200ResponseResultsRU
- MovieWatchProviders200ResponseResultsRUFlatrateInner
- MovieWatchProviders200ResponseResultsRURentInner
- MovieWatchProviders200ResponseResultsSA
- MovieWatchProviders200ResponseResultsSAFlatrateInner
- MovieWatchProviders200ResponseResultsSE
- MovieWatchProviders200ResponseResultsSEBuyInner
- MovieWatchProviders200ResponseResultsSG
- MovieWatchProviders200ResponseResultsSI
- MovieWatchProviders200ResponseResultsSK
- MovieWatchProviders200ResponseResultsSM
- MovieWatchProviders200ResponseResultsSV
- MovieWatchProviders200ResponseResultsTH
- MovieWatchProviders200ResponseResultsTR
- MovieWatchProviders200ResponseResultsTT
- MovieWatchProviders200ResponseResultsTTFlatrateInner
- MovieWatchProviders200ResponseResultsTW
- MovieWatchProviders200ResponseResultsUG
- MovieWatchProviders200ResponseResultsUS
- MovieWatchProviders200ResponseResultsUSFlatrateInner
- MovieWatchProviders200ResponseResultsUSRentInner
- MovieWatchProviders200ResponseResultsUY
- MovieWatchProviders200ResponseResultsVE
- MovieWatchProviders200ResponseResultsYE
- MovieWatchProviders200ResponseResultsZA
- NetworkDetails200Response
- PersonChanges200Response
- PersonChanges200ResponseChangesInner
- PersonChanges200ResponseChangesInnerItemsInner
- PersonCombinedCredits200Response
- PersonCombinedCredits200ResponseCastInner
- PersonCombinedCredits200ResponseCrewInner
- PersonDetails200Response
- PersonExternalIds200Response
- PersonImages200Response
- PersonImages200ResponseProfilesInner
- PersonLatestId200Response
- PersonMovieCredits200Response
- PersonMovieCredits200ResponseCastInner
- PersonMovieCredits200ResponseCrewInner
- PersonPopularList200Response
- PersonPopularList200ResponseResultsInner
- PersonPopularList200ResponseResultsInnerKnownForInner
- PersonTaggedImages200Response
- PersonTaggedImages200ResponseResultsInner
- PersonTaggedImages200ResponseResultsInnerMedia
- PersonTvCredits200Response
- PersonTvCredits200ResponseCastInner
- PersonTvCredits200ResponseCrewInner
- ReviewDetails200Response
- ReviewDetails200ResponseAuthorDetails
- SearchCollection200Response
- SearchCollection200ResponseResultsInner
- SearchCompany200Response
- SearchCompany200ResponseResultsInner
- SearchKeyword200Response
- SearchKeyword200ResponseResultsInner
- SearchMovie200Response
- SearchMovie200ResponseResultsInner
- SearchMulti200Response
- SearchMulti200ResponseResultsInner
- SearchPerson200Response
- SearchPerson200ResponseResultsInner
- SearchPerson200ResponseResultsInnerKnownForInner
- SearchTv200Response
- SearchTv200ResponseResultsInner
- Translations200Response
- Translations200ResponseTranslationsInner
- Translations200ResponseTranslationsInnerData
- TrendingAll200Response
- TrendingAll200ResponseResultsInner
- TrendingPeople200Response
- TrendingPeople200ResponseResultsInner
- TrendingPeople200ResponseResultsInnerKnownForInner
- TrendingTv200Response
- TrendingTv200ResponseResultsInner
- TvEpisodeChangesById200Response
- TvEpisodeChangesById200ResponseChangesInner
- TvEpisodeChangesById200ResponseChangesInnerItemsInner
- TvEpisodeCredits200Response
- TvEpisodeCredits200ResponseCrewInner
- TvEpisodeCredits200ResponseGuestStarsInner
- TvEpisodeDetails200Response
- TvEpisodeDetails200ResponseCrewInner
- TvEpisodeDetails200ResponseGuestStarsInner
- TvEpisodeExternalIds200Response
- TvEpisodeGroupDetails200Response
- TvEpisodeGroupDetails200ResponseGroupsInner
- TvEpisodeGroupDetails200ResponseGroupsInnerEpisodesInner
- TvEpisodeGroupDetails200ResponseNetwork
- TvEpisodeImages200Response
- TvEpisodeImages200ResponseStillsInner
- TvEpisodeTranslations200Response
- TvEpisodeTranslations200ResponseTranslationsInner
- TvEpisodeTranslations200ResponseTranslationsInnerData
- TvSeasonAccountStates200Response
- TvSeasonAccountStates200ResponseResultsInner
- TvSeasonAggregateCredits200Response
- TvSeasonAggregateCredits200ResponseCastInner
- TvSeasonAggregateCredits200ResponseCastInnerRolesInner
- TvSeasonAggregateCredits200ResponseCrewInner
- TvSeasonAggregateCredits200ResponseCrewInnerJobsInner
- TvSeasonChangesById200Response
- TvSeasonChangesById200ResponseChangesInner
- TvSeasonChangesById200ResponseChangesInnerItemsInner
- TvSeasonChangesById200ResponseChangesInnerItemsInnerValue
- TvSeasonCredits200Response
- TvSeasonCredits200ResponseCrewInner
- TvSeasonDetails200Response
- TvSeasonDetails200ResponseEpisodesInner
- TvSeasonDetails200ResponseEpisodesInnerCrewInner
- TvSeasonDetails200ResponseEpisodesInnerGuestStarsInner
- TvSeasonExternalIds200Response
- TvSeasonImages200Response
- TvSeasonImages200ResponsePostersInner
- TvSeasonTranslations200Response
- TvSeasonTranslations200ResponseTranslationsInner
- TvSeasonTranslations200ResponseTranslationsInnerData
- TvSeasonVideos200Response
- TvSeasonVideos200ResponseResultsInner
- TvSeasonWatchProviders200Response
- TvSeasonWatchProviders200ResponseResults
- TvSeasonWatchProviders200ResponseResultsAE
- TvSeasonWatchProviders200ResponseResultsAR
- TvSeasonWatchProviders200ResponseResultsAT
- TvSeasonWatchProviders200ResponseResultsAU
- TvSeasonWatchProviders200ResponseResultsBA
- TvSeasonWatchProviders200ResponseResultsBB
- TvSeasonWatchProviders200ResponseResultsBE
- TvSeasonWatchProviders200ResponseResultsBG
- TvSeasonWatchProviders200ResponseResultsBO
- TvSeasonWatchProviders200ResponseResultsBR
- TvSeasonWatchProviders200ResponseResultsBS
- TvSeasonWatchProviders200ResponseResultsCA
- TvSeasonWatchProviders200ResponseResultsCH
- TvSeasonWatchProviders200ResponseResultsCI
- TvSeasonWatchProviders200ResponseResultsCL
- TvSeasonWatchProviders200ResponseResultsCO
- TvSeasonWatchProviders200ResponseResultsCR
- TvSeasonWatchProviders200ResponseResultsCZ
- TvSeasonWatchProviders200ResponseResultsDE
- TvSeasonWatchProviders200ResponseResultsDK
- TvSeasonWatchProviders200ResponseResultsDO
- TvSeasonWatchProviders200ResponseResultsDZ
- TvSeasonWatchProviders200ResponseResultsEC
- TvSeasonWatchProviders200ResponseResultsEG
- TvSeasonWatchProviders200ResponseResultsEGFlatrateInner
- TvSeasonWatchProviders200ResponseResultsES
- TvSeasonWatchProviders200ResponseResultsFI
- TvSeasonWatchProviders200ResponseResultsFR
- TvSeasonWatchProviders200ResponseResultsGB
- TvSeasonWatchProviders200ResponseResultsGF
- TvSeasonWatchProviders200ResponseResultsGH
- TvSeasonWatchProviders200ResponseResultsGQ
- TvSeasonWatchProviders200ResponseResultsGT
- TvSeasonWatchProviders200ResponseResultsHK
- TvSeasonWatchProviders200ResponseResultsHN
- TvSeasonWatchProviders200ResponseResultsHR
- TvSeasonWatchProviders200ResponseResultsHU
- TvSeasonWatchProviders200ResponseResultsID
- TvSeasonWatchProviders200ResponseResultsIE
- TvSeasonWatchProviders200ResponseResultsIL
- TvSeasonWatchProviders200ResponseResultsIQ
- TvSeasonWatchProviders200ResponseResultsIT
- TvSeasonWatchProviders200ResponseResultsJM
- TvSeasonWatchProviders200ResponseResultsJP
- TvSeasonWatchProviders200ResponseResultsKE
- TvSeasonWatchProviders200ResponseResultsKR
- TvSeasonWatchProviders200ResponseResultsLB
- TvSeasonWatchProviders200ResponseResultsLY
- TvSeasonWatchProviders200ResponseResultsMD
- TvSeasonWatchProviders200ResponseResultsMK
- TvSeasonWatchProviders200ResponseResultsMU
- TvSeasonWatchProviders200ResponseResultsMX
- TvSeasonWatchProviders200ResponseResultsMY
- TvSeasonWatchProviders200ResponseResultsMZ
- TvSeasonWatchProviders200ResponseResultsNE
- TvSeasonWatchProviders200ResponseResultsNG
- TvSeasonWatchProviders200ResponseResultsNL
- TvSeasonWatchProviders200ResponseResultsNO
- TvSeasonWatchProviders200ResponseResultsNZ
- TvSeasonWatchProviders200ResponseResultsPA
- TvSeasonWatchProviders200ResponseResultsPE
- TvSeasonWatchProviders200ResponseResultsPH
- TvSeasonWatchProviders200ResponseResultsPL
- TvSeasonWatchProviders200ResponseResultsPS
- TvSeasonWatchProviders200ResponseResultsPT
- TvSeasonWatchProviders200ResponseResultsPY
- TvSeasonWatchProviders200ResponseResultsRO
- TvSeasonWatchProviders200ResponseResultsRS
- TvSeasonWatchProviders200ResponseResultsRU
- TvSeasonWatchProviders200ResponseResultsSA
- TvSeasonWatchProviders200ResponseResultsSC
- TvSeasonWatchProviders200ResponseResultsSE
- TvSeasonWatchProviders200ResponseResultsSG
- TvSeasonWatchProviders200ResponseResultsSI
- TvSeasonWatchProviders200ResponseResultsSK
- TvSeasonWatchProviders200ResponseResultsSN
- TvSeasonWatchProviders200ResponseResultsSV
- TvSeasonWatchProviders200ResponseResultsTH
- TvSeasonWatchProviders200ResponseResultsTR
- TvSeasonWatchProviders200ResponseResultsTT
- TvSeasonWatchProviders200ResponseResultsTW
- TvSeasonWatchProviders200ResponseResultsTZ
- TvSeasonWatchProviders200ResponseResultsUG
- TvSeasonWatchProviders200ResponseResultsUS
- TvSeasonWatchProviders200ResponseResultsUY
- TvSeasonWatchProviders200ResponseResultsVE
- TvSeasonWatchProviders200ResponseResultsZA
- TvSeasonWatchProviders200ResponseResultsZM
- TvSeriesAggregateCredits200Response
- TvSeriesAggregateCredits200ResponseCastInner
- TvSeriesAggregateCredits200ResponseCastInnerRolesInner
- TvSeriesAggregateCredits200ResponseCrewInner
- TvSeriesAggregateCredits200ResponseCrewInnerJobsInner
- TvSeriesAiringTodayList200Response
- TvSeriesAiringTodayList200ResponseResultsInner
- TvSeriesAlternativeTitles200Response
- TvSeriesAlternativeTitles200ResponseResultsInner
- TvSeriesChanges200Response
- TvSeriesChanges200ResponseChangesInner
- TvSeriesChanges200ResponseChangesInnerItemsInner
- TvSeriesChanges200ResponseChangesInnerItemsInnerOriginalValue
- TvSeriesChanges200ResponseChangesInnerItemsInnerOriginalValuePoster
- TvSeriesChanges200ResponseChangesInnerItemsInnerValue
- TvSeriesChanges200ResponseChangesInnerItemsInnerValuePoster
- TvSeriesContentRatings200Response
- TvSeriesContentRatings200ResponseResultsInner
- TvSeriesCredits200Response
- TvSeriesCredits200ResponseCastInner
- TvSeriesCredits200ResponseCrewInner
- TvSeriesDetails200Response
- TvSeriesDetails200ResponseCreatedByInner
- TvSeriesDetails200ResponseGenresInner
- TvSeriesDetails200ResponseLastEpisodeToAir
- TvSeriesDetails200ResponseNetworksInner
- TvSeriesDetails200ResponseProductionCompaniesInner
- TvSeriesDetails200ResponseProductionCountriesInner
- TvSeriesDetails200ResponseSeasonsInner
- TvSeriesEpisodeGroups200Response
- TvSeriesEpisodeGroups200ResponseResultsInner
- TvSeriesExternalIds200Response
- TvSeriesKeywords200Response
- TvSeriesLatestId200Response
- TvSeriesLatestId200ResponseLastEpisodeToAir
- TvSeriesLatestId200ResponseSeasonsInner
- TvSeriesOnTheAirList200Response
- TvSeriesPopularList200Response
- TvSeriesRecommendations200Response
- TvSeriesRecommendations200ResponseResultsInner
- TvSeriesReviews200Response
- TvSeriesReviews200ResponseResultsInner
- TvSeriesReviews200ResponseResultsInnerAuthorDetails
- TvSeriesScreenedTheatrically200Response
- TvSeriesScreenedTheatrically200ResponseResultsInner
- TvSeriesSimilar200Response
- TvSeriesSimilar200ResponseResultsInner
- TvSeriesTopRatedList200Response
- TvSeriesTopRatedList200ResponseResultsInner
- TvSeriesTranslations200Response
- TvSeriesTranslations200ResponseTranslationsInner
- TvSeriesTranslations200ResponseTranslationsInnerData
- TvSeriesVideos200Response
- TvSeriesVideos200ResponseResultsInner
- TvSeriesWatchProviders200Response
- TvSeriesWatchProviders200ResponseResults
- TvSeriesWatchProviders200ResponseResultsAE
- TvSeriesWatchProviders200ResponseResultsAEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsAR
- TvSeriesWatchProviders200ResponseResultsARFlatrateInner
- TvSeriesWatchProviders200ResponseResultsAT
- TvSeriesWatchProviders200ResponseResultsATFlatrateInner
- TvSeriesWatchProviders200ResponseResultsAU
- TvSeriesWatchProviders200ResponseResultsAUFlatrateInner
- TvSeriesWatchProviders200ResponseResultsBA
- TvSeriesWatchProviders200ResponseResultsBB
- TvSeriesWatchProviders200ResponseResultsBE
- TvSeriesWatchProviders200ResponseResultsBEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsBG
- TvSeriesWatchProviders200ResponseResultsBGFlatrateInner
- TvSeriesWatchProviders200ResponseResultsBO
- TvSeriesWatchProviders200ResponseResultsBOFlatrateInner
- TvSeriesWatchProviders200ResponseResultsBR
- TvSeriesWatchProviders200ResponseResultsBRFlatrateInner
- TvSeriesWatchProviders200ResponseResultsBS
- TvSeriesWatchProviders200ResponseResultsCA
- TvSeriesWatchProviders200ResponseResultsCAFlatrateInner
- TvSeriesWatchProviders200ResponseResultsCH
- TvSeriesWatchProviders200ResponseResultsCHFlatrateInner
- TvSeriesWatchProviders200ResponseResultsCI
- TvSeriesWatchProviders200ResponseResultsCIFlatrateInner
- TvSeriesWatchProviders200ResponseResultsCL
- TvSeriesWatchProviders200ResponseResultsCO
- TvSeriesWatchProviders200ResponseResultsCOFlatrateInner
- TvSeriesWatchProviders200ResponseResultsCR
- TvSeriesWatchProviders200ResponseResultsCRFlatrateInner
- TvSeriesWatchProviders200ResponseResultsCZ
- TvSeriesWatchProviders200ResponseResultsCZFlatrateInner
- TvSeriesWatchProviders200ResponseResultsDE
- TvSeriesWatchProviders200ResponseResultsDEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsDK
- TvSeriesWatchProviders200ResponseResultsDO
- TvSeriesWatchProviders200ResponseResultsDZ
- TvSeriesWatchProviders200ResponseResultsDZFlatrateInner
- TvSeriesWatchProviders200ResponseResultsEC
- TvSeriesWatchProviders200ResponseResultsECFlatrateInner
- TvSeriesWatchProviders200ResponseResultsEG
- TvSeriesWatchProviders200ResponseResultsEGFlatrateInner
- TvSeriesWatchProviders200ResponseResultsES
- TvSeriesWatchProviders200ResponseResultsESFlatrateInner
- TvSeriesWatchProviders200ResponseResultsFI
- TvSeriesWatchProviders200ResponseResultsFIBuyInner
- TvSeriesWatchProviders200ResponseResultsFR
- TvSeriesWatchProviders200ResponseResultsFRFlatrateInner
- TvSeriesWatchProviders200ResponseResultsGB
- TvSeriesWatchProviders200ResponseResultsGBFlatrateInner
- TvSeriesWatchProviders200ResponseResultsGF
- TvSeriesWatchProviders200ResponseResultsGH
- TvSeriesWatchProviders200ResponseResultsGHFlatrateInner
- TvSeriesWatchProviders200ResponseResultsGQ
- TvSeriesWatchProviders200ResponseResultsGT
- TvSeriesWatchProviders200ResponseResultsHK
- TvSeriesWatchProviders200ResponseResultsHKFlatrateInner
- TvSeriesWatchProviders200ResponseResultsHN
- TvSeriesWatchProviders200ResponseResultsHR
- TvSeriesWatchProviders200ResponseResultsHRFlatrateInner
- TvSeriesWatchProviders200ResponseResultsHU
- TvSeriesWatchProviders200ResponseResultsID
- TvSeriesWatchProviders200ResponseResultsIDFlatrateInner
- TvSeriesWatchProviders200ResponseResultsIE
- TvSeriesWatchProviders200ResponseResultsIEBuyInner
- TvSeriesWatchProviders200ResponseResultsIEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsIL
- TvSeriesWatchProviders200ResponseResultsILFlatrateInner
- TvSeriesWatchProviders200ResponseResultsIQ
- TvSeriesWatchProviders200ResponseResultsIQFlatrateInner
- TvSeriesWatchProviders200ResponseResultsIT
- TvSeriesWatchProviders200ResponseResultsITBuyInner
- TvSeriesWatchProviders200ResponseResultsJM
- TvSeriesWatchProviders200ResponseResultsJP
- TvSeriesWatchProviders200ResponseResultsJPBuyInner
- TvSeriesWatchProviders200ResponseResultsJPFlatrateInner
- TvSeriesWatchProviders200ResponseResultsKE
- TvSeriesWatchProviders200ResponseResultsKEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsKR
- TvSeriesWatchProviders200ResponseResultsLB
- TvSeriesWatchProviders200ResponseResultsLT
- TvSeriesWatchProviders200ResponseResultsLY
- TvSeriesWatchProviders200ResponseResultsMD
- TvSeriesWatchProviders200ResponseResultsMK
- TvSeriesWatchProviders200ResponseResultsMU
- TvSeriesWatchProviders200ResponseResultsMUFlatrateInner
- TvSeriesWatchProviders200ResponseResultsMX
- TvSeriesWatchProviders200ResponseResultsMY
- TvSeriesWatchProviders200ResponseResultsMZ
- TvSeriesWatchProviders200ResponseResultsNE
- TvSeriesWatchProviders200ResponseResultsNG
- TvSeriesWatchProviders200ResponseResultsNL
- TvSeriesWatchProviders200ResponseResultsNLFlatrateInner
- TvSeriesWatchProviders200ResponseResultsNO
- TvSeriesWatchProviders200ResponseResultsNOBuyInner
- TvSeriesWatchProviders200ResponseResultsNZ
- TvSeriesWatchProviders200ResponseResultsNZFlatrateInner
- TvSeriesWatchProviders200ResponseResultsPA
- TvSeriesWatchProviders200ResponseResultsPE
- TvSeriesWatchProviders200ResponseResultsPEFlatrateInner
- TvSeriesWatchProviders200ResponseResultsPH
- TvSeriesWatchProviders200ResponseResultsPHFlatrateInner
- TvSeriesWatchProviders200ResponseResultsPL
- TvSeriesWatchProviders200ResponseResultsPLFlatrateInner
- TvSeriesWatchProviders200ResponseResultsPLRentInner
- TvSeriesWatchProviders200ResponseResultsPS
- TvSeriesWatchProviders200ResponseResultsPT
- TvSeriesWatchProviders200ResponseResultsPY
- TvSeriesWatchProviders200ResponseResultsRO
- TvSeriesWatchProviders200ResponseResultsROFlatrateInner
- TvSeriesWatchProviders200ResponseResultsRS
- TvSeriesWatchProviders200ResponseResultsRSFlatrateInner
- TvSeriesWatchProviders200ResponseResultsRU
- TvSeriesWatchProviders200ResponseResultsRUAdsInner
- TvSeriesWatchProviders200ResponseResultsRUFlatrateInner
- TvSeriesWatchProviders200ResponseResultsSA
- TvSeriesWatchProviders200ResponseResultsSAFlatrateInner
- TvSeriesWatchProviders200ResponseResultsSC
- TvSeriesWatchProviders200ResponseResultsSCFlatrateInner
- TvSeriesWatchProviders200ResponseResultsSE
- TvSeriesWatchProviders200ResponseResultsSG
- TvSeriesWatchProviders200ResponseResultsSGFlatrateInner
- TvSeriesWatchProviders200ResponseResultsSI
- TvSeriesWatchProviders200ResponseResultsSK
- TvSeriesWatchProviders200ResponseResultsSKFlatrateInner
- TvSeriesWatchProviders200ResponseResultsSN
- TvSeriesWatchProviders200ResponseResultsSV
- TvSeriesWatchProviders200ResponseResultsSVFlatrateInner
- TvSeriesWatchProviders200ResponseResultsTH
- TvSeriesWatchProviders200ResponseResultsTR
- TvSeriesWatchProviders200ResponseResultsTRFlatrateInner
- TvSeriesWatchProviders200ResponseResultsTT
- TvSeriesWatchProviders200ResponseResultsTW
- TvSeriesWatchProviders200ResponseResultsTZ
- TvSeriesWatchProviders200ResponseResultsUG
- TvSeriesWatchProviders200ResponseResultsUS
- TvSeriesWatchProviders200ResponseResultsUY
- TvSeriesWatchProviders200ResponseResultsUYFlatrateInner
- TvSeriesWatchProviders200ResponseResultsVE
- TvSeriesWatchProviders200ResponseResultsZA
- TvSeriesWatchProviders200ResponseResultsZAFlatrateInner
- TvSeriesWatchProviders200ResponseResultsZM
- WatchProvidersAvailableRegions200Response
- WatchProvidersAvailableRegions200ResponseResultsInner
- WatchProvidersMovieList200Response
- WatchProvidersMovieList200ResponseResultsInner
- WatchProvidersMovieList200ResponseResultsInnerDisplayPriorities
Authentication schemes defined for the API:
- Type: API key
Example
using OpenAPI
using OpenAPI.Clients
import OpenAPI.Clients: Client
client = Client(server_uri)
api = MyApi(client)
result = callApi(api, args...; api_key)