@tmdb-graphql-api/resolvers 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/cjs/index.cjs +3435 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/esm/index.mjs +3432 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/types/cjs/constants.d.cts +54 -0
- package/dist/types/cjs/constants.d.cts.map +1 -0
- package/dist/types/cjs/helpers/decodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/decodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts +4 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts.map +1 -0
- package/dist/types/cjs/helpers/encodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/encodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts +3 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts +6 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts +4 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts +8 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts.map +1 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts +3 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts.map +1 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts +3 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts.map +1 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts +4 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts.map +1 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts +2 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts.map +1 -0
- package/dist/types/cjs/index.d.cts +3 -0
- package/dist/types/cjs/index.d.cts.map +1 -0
- package/dist/types/cjs/main.d.cts +3 -0
- package/dist/types/cjs/main.d.cts.map +1 -0
- package/dist/types/cjs/queries/certifications.d.cts +5 -0
- package/dist/types/cjs/queries/certifications.d.cts.map +1 -0
- package/dist/types/cjs/queries/collection.d.cts +3401 -0
- package/dist/types/cjs/queries/collection.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionImages.d.cts +14 -0
- package/dist/types/cjs/queries/collectionImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts +18 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/company.d.cts +15 -0
- package/dist/types/cjs/queries/company.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyLogos.d.cts +14 -0
- package/dist/types/cjs/queries/companyLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/configuration.d.cts +16 -0
- package/dist/types/cjs/queries/configuration.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts +4 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts +4 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts +4 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts +4 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts +4 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts.map +1 -0
- package/dist/types/cjs/queries/credit.d.cts +4196 -0
- package/dist/types/cjs/queries/credit.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts +15 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverTv.d.cts +15 -0
- package/dist/types/cjs/queries/discoverTv.d.cts.map +1 -0
- package/dist/types/cjs/queries/episode.d.cts +98 -0
- package/dist/types/cjs/queries/episode.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts +33 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeStills.d.cts +6 -0
- package/dist/types/cjs/queries/episodeStills.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts +16 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/find.d.cts +1803 -0
- package/dist/types/cjs/queries/find.d.cts.map +1 -0
- package/dist/types/cjs/queries/genres.d.cts +9 -0
- package/dist/types/cjs/queries/genres.d.cts.map +1 -0
- package/dist/types/cjs/queries/keyword.d.cts +9 -0
- package/dist/types/cjs/queries/keyword.d.cts.map +1 -0
- package/dist/types/cjs/queries/movie.d.cts +3597 -0
- package/dist/types/cjs/queries/movie.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts +7 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieCredits.d.cts +33 -0
- package/dist/types/cjs/queries/movieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieImages.d.cts +6 -0
- package/dist/types/cjs/queries/movieImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts +6 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts +1866 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts +13 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReviews.d.cts +1866 -0
- package/dist/types/cjs/queries/movieReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts +1866 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieVideos.d.cts +16 -0
- package/dist/types/cjs/queries/movieVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/network.d.cts +26 -0
- package/dist/types/cjs/queries/network.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkLogos.d.cts +14 -0
- package/dist/types/cjs/queries/networkLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/person.d.cts +46 -0
- package/dist/types/cjs/queries/person.d.cts.map +1 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personProfiles.d.cts +6 -0
- package/dist/types/cjs/queries/personProfiles.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/personTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/rated.d.cts +17 -0
- package/dist/types/cjs/queries/rated.d.cts.map +1 -0
- package/dist/types/cjs/queries/review.d.cts +28 -0
- package/dist/types/cjs/queries/review.d.cts.map +1 -0
- package/dist/types/cjs/queries/search.d.cts +17 -0
- package/dist/types/cjs/queries/search.d.cts.map +1 -0
- package/dist/types/cjs/queries/season.d.cts +282 -0
- package/dist/types/cjs/queries/season.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts +33 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts +3 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts +6 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts +16 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/trending.d.cts +17 -0
- package/dist/types/cjs/queries/trending.d.cts.map +1 -0
- package/dist/types/cjs/queries/tv.d.cts +10460 -0
- package/dist/types/cjs/queries/tv.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts +12 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts +10 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvCredits.d.cts +33 -0
- package/dist/types/cjs/queries/tvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts +41 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvImages.d.cts +16 -0
- package/dist/types/cjs/queries/tvImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts +10 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts +5373 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvReviews.d.cts +5373 -0
- package/dist/types/cjs/queries/tvReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts +5373 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvVideos.d.cts +16 -0
- package/dist/types/cjs/queries/tvVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/videoType.d.cts +3 -0
- package/dist/types/cjs/queries/videoType.d.cts.map +1 -0
- package/dist/types/cjs/types.d.cts +326 -0
- package/dist/types/cjs/types.d.cts.map +1 -0
- package/dist/types/esm/constants.d.ts +54 -0
- package/dist/types/esm/constants.d.ts.map +1 -0
- package/dist/types/esm/helpers/decodeId.d.ts +3 -0
- package/dist/types/esm/helpers/decodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts +4 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts.map +1 -0
- package/dist/types/esm/helpers/encodeId.d.ts +3 -0
- package/dist/types/esm/helpers/encodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts +3 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts +6 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts.map +1 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts +4 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts.map +1 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts +8 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts.map +1 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts +3 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts.map +1 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts +3 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts.map +1 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts +4 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts.map +1 -0
- package/dist/types/esm/helpers/typePropNames.d.ts +2 -0
- package/dist/types/esm/helpers/typePropNames.d.ts.map +1 -0
- package/dist/types/esm/index.d.ts +3 -0
- package/dist/types/esm/index.d.ts.map +1 -0
- package/dist/types/esm/main.d.ts +3 -0
- package/dist/types/esm/main.d.ts.map +1 -0
- package/dist/types/esm/queries/certifications.d.ts +5 -0
- package/dist/types/esm/queries/certifications.d.ts.map +1 -0
- package/dist/types/esm/queries/collection.d.ts +3401 -0
- package/dist/types/esm/queries/collection.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionImages.d.ts +14 -0
- package/dist/types/esm/queries/collectionImages.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts +18 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/company.d.ts +15 -0
- package/dist/types/esm/queries/company.d.ts.map +1 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/companyLogos.d.ts +14 -0
- package/dist/types/esm/queries/companyLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/configuration.d.ts +16 -0
- package/dist/types/esm/queries/configuration.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationCountries.d.ts +4 -0
- package/dist/types/esm/queries/configurationCountries.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationJobs.d.ts +4 -0
- package/dist/types/esm/queries/configurationJobs.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts +4 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts +4 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts +4 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts.map +1 -0
- package/dist/types/esm/queries/credit.d.ts +4196 -0
- package/dist/types/esm/queries/credit.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverMovies.d.ts +15 -0
- package/dist/types/esm/queries/discoverMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverTv.d.ts +15 -0
- package/dist/types/esm/queries/discoverTv.d.ts.map +1 -0
- package/dist/types/esm/queries/episode.d.ts +98 -0
- package/dist/types/esm/queries/episode.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeCredits.d.ts +33 -0
- package/dist/types/esm/queries/episodeCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeStills.d.ts +6 -0
- package/dist/types/esm/queries/episodeStills.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts +20 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeVideos.d.ts +16 -0
- package/dist/types/esm/queries/episodeVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/find.d.ts +1803 -0
- package/dist/types/esm/queries/find.d.ts.map +1 -0
- package/dist/types/esm/queries/genres.d.ts +9 -0
- package/dist/types/esm/queries/genres.d.ts.map +1 -0
- package/dist/types/esm/queries/keyword.d.ts +9 -0
- package/dist/types/esm/queries/keyword.d.ts.map +1 -0
- package/dist/types/esm/queries/movie.d.ts +3597 -0
- package/dist/types/esm/queries/movie.d.ts.map +1 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts +7 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/movieCredits.d.ts +33 -0
- package/dist/types/esm/queries/movieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/movieImages.d.ts +6 -0
- package/dist/types/esm/queries/movieImages.d.ts.map +1 -0
- package/dist/types/esm/queries/movieKeywords.d.ts +6 -0
- package/dist/types/esm/queries/movieKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts +1866 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts +13 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReviews.d.ts +1866 -0
- package/dist/types/esm/queries/movieReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts +1866 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/movieTranslations.d.ts +20 -0
- package/dist/types/esm/queries/movieTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieVideos.d.ts +16 -0
- package/dist/types/esm/queries/movieVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/network.d.ts +26 -0
- package/dist/types/esm/queries/network.d.ts.map +1 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/networkLogos.d.ts +14 -0
- package/dist/types/esm/queries/networkLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/person.d.ts +46 -0
- package/dist/types/esm/queries/person.d.ts.map +1 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts +6 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/personExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts +6 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personProfiles.d.ts +6 -0
- package/dist/types/esm/queries/personProfiles.d.ts.map +1 -0
- package/dist/types/esm/queries/personTranslations.d.ts +20 -0
- package/dist/types/esm/queries/personTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/personTvCredits.d.ts +6 -0
- package/dist/types/esm/queries/personTvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/rated.d.ts +17 -0
- package/dist/types/esm/queries/rated.d.ts.map +1 -0
- package/dist/types/esm/queries/review.d.ts +28 -0
- package/dist/types/esm/queries/review.d.ts.map +1 -0
- package/dist/types/esm/queries/search.d.ts +17 -0
- package/dist/types/esm/queries/search.d.ts.map +1 -0
- package/dist/types/esm/queries/season.d.ts +282 -0
- package/dist/types/esm/queries/season.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonCredits.d.ts +33 -0
- package/dist/types/esm/queries/seasonCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts +3 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonPosters.d.ts +6 -0
- package/dist/types/esm/queries/seasonPosters.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts +20 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonVideos.d.ts +16 -0
- package/dist/types/esm/queries/seasonVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/trending.d.ts +17 -0
- package/dist/types/esm/queries/trending.d.ts.map +1 -0
- package/dist/types/esm/queries/tv.d.ts +10460 -0
- package/dist/types/esm/queries/tv.d.ts.map +1 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts +12 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts +10 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts.map +1 -0
- package/dist/types/esm/queries/tvCredits.d.ts +33 -0
- package/dist/types/esm/queries/tvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts +41 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts.map +1 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/tvImages.d.ts +16 -0
- package/dist/types/esm/queries/tvImages.d.ts.map +1 -0
- package/dist/types/esm/queries/tvKeywords.d.ts +10 -0
- package/dist/types/esm/queries/tvKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts +5373 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvReviews.d.ts +5373 -0
- package/dist/types/esm/queries/tvReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts +5373 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts.map +1 -0
- package/dist/types/esm/queries/tvTranslations.d.ts +20 -0
- package/dist/types/esm/queries/tvTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvVideos.d.ts +16 -0
- package/dist/types/esm/queries/tvVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/videoType.d.ts +3 -0
- package/dist/types/esm/queries/videoType.d.ts.map +1 -0
- package/dist/types/esm/types.d.ts +326 -0
- package/dist/types/esm/types.d.ts.map +1 -0
- package/dist/types/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +71 -0
- package/src/__testUtils__/helpers/buildEndpoint.ts +21 -0
- package/src/__testUtils__/helpers/buildResolveInfoArg.ts +34 -0
- package/src/__testUtils__/helpers/createRestClient.ts +9 -0
- package/src/constants.ts +71 -0
- package/src/helpers/__snapshots__/typePropNames.test.ts.snap +708 -0
- package/src/helpers/decodeId.ts +4 -0
- package/src/helpers/defaultFieldResolver.ts +19 -0
- package/src/helpers/encodeId.ts +4 -0
- package/src/helpers/formatDirectionalSuffixes.ts +15 -0
- package/src/helpers/formatQueryParams.ts +8 -0
- package/src/helpers/getAppendToResponseKeys.ts +28 -0
- package/src/helpers/getTvIdSeasonAndEpisode.ts +25 -0
- package/src/helpers/makeFallbackFieldResolvers.ts +11 -0
- package/src/helpers/removeNullValues.ts +11 -0
- package/src/helpers/snakeCasePropNames.ts +9 -0
- package/src/helpers/typePropNames.test.ts +7 -0
- package/src/helpers/typePropNames.ts +14 -0
- package/src/index.ts +2 -0
- package/src/main.ts +215 -0
- package/src/queries/__snapshots__/certifications.test.ts.snap +1365 -0
- package/src/queries/__snapshots__/collection.test.ts.snap +195 -0
- package/src/queries/__snapshots__/collectionImages.test.ts.snap +29 -0
- package/src/queries/__snapshots__/collectionTranslations.test.ts.snap +391 -0
- package/src/queries/__snapshots__/company.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyAlternativeNames.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyLogos.test.ts.snap +46 -0
- package/src/queries/__snapshots__/configuration.test.ts.snap +101 -0
- package/src/queries/__snapshots__/configurationCountries.test.ts.snap +1241 -0
- package/src/queries/__snapshots__/configurationJobs.test.ts.snap +1007 -0
- package/src/queries/__snapshots__/configurationLanguages.test.ts.snap +941 -0
- package/src/queries/__snapshots__/configurationPrimaryTranslations.test.ts.snap +76 -0
- package/src/queries/__snapshots__/configurationTimezones.test.ts.snap +1678 -0
- package/src/queries/__snapshots__/credit.test.ts.snap +106 -0
- package/src/queries/__snapshots__/discoverMovies.test.ts.snap +481 -0
- package/src/queries/__snapshots__/discoverTv.test.ts.snap +443 -0
- package/src/queries/__snapshots__/episode.test.ts.snap +360 -0
- package/src/queries/__snapshots__/episodeCredits.test.ts.snap +866 -0
- package/src/queries/__snapshots__/episodeExternalIds.test.ts.snap +21 -0
- package/src/queries/__snapshots__/episodeStills.test.ts.snap +281 -0
- package/src/queries/__snapshots__/episodeTranslations.test.ts.snap +1059 -0
- package/src/queries/__snapshots__/episodeVideos.test.ts.snap +5 -0
- package/src/queries/__snapshots__/find.test.ts.snap +86 -0
- package/src/queries/__snapshots__/genres.test.ts.snap +151 -0
- package/src/queries/__snapshots__/keyword.test.ts.snap +8 -0
- package/src/queries/__snapshots__/movie.test.ts.snap +73 -0
- package/src/queries/__snapshots__/movieAlternativeTitles.test.ts.snap +611 -0
- package/src/queries/__snapshots__/movieCredits.test.ts.snap +2690 -0
- package/src/queries/__snapshots__/movieExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/movieImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/movieKeywords.test.ts.snap +147 -0
- package/src/queries/__snapshots__/movieRecommendations.test.ts.snap +727 -0
- package/src/queries/__snapshots__/movieReleaseDates.test.ts.snap +755 -0
- package/src/queries/__snapshots__/movieReviews.test.ts.snap +509 -0
- package/src/queries/__snapshots__/movieSimilarMovies.test.ts.snap +693 -0
- package/src/queries/__snapshots__/movieTranslations.test.ts.snap +1079 -0
- package/src/queries/__snapshots__/movieVideos.test.ts.snap +179 -0
- package/src/queries/__snapshots__/movieWatchProviders.test.ts.snap +5321 -0
- package/src/queries/__snapshots__/network.test.ts.snap +12 -0
- package/src/queries/__snapshots__/networkAlternativeNames.test.ts.snap +18 -0
- package/src/queries/__snapshots__/networkLogos.test.ts.snap +16 -0
- package/src/queries/__snapshots__/person.test.ts.snap +35 -0
- package/src/queries/__snapshots__/personCombinedCredits.test.ts.snap +7249 -0
- package/src/queries/__snapshots__/personExternalIds.test.ts.snap +25 -0
- package/src/queries/__snapshots__/personMovieCredits.test.ts.snap +5595 -0
- package/src/queries/__snapshots__/personProfiles.test.ts.snap +155 -0
- package/src/queries/__snapshots__/personTranslations.test.ts.snap +389 -0
- package/src/queries/__snapshots__/personTvCredits.test.ts.snap +1361 -0
- package/src/queries/__snapshots__/rated.test.ts.snap +547 -0
- package/src/queries/__snapshots__/review.test.ts.snap +31 -0
- package/src/queries/__snapshots__/search.test.ts.snap +2479 -0
- package/src/queries/__snapshots__/season.test.ts.snap +4694 -0
- package/src/queries/__snapshots__/seasonCredits.test.ts.snap +692 -0
- package/src/queries/__snapshots__/seasonExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/seasonPosters.test.ts.snap +5 -0
- package/src/queries/__snapshots__/seasonTranslations.test.ts.snap +1073 -0
- package/src/queries/__snapshots__/seasonVideos.test.ts.snap +395 -0
- package/src/queries/__snapshots__/trending.test.ts.snap +481 -0
- package/src/queries/__snapshots__/tv.test.ts.snap +220 -0
- package/src/queries/__snapshots__/tvAlternativeTitles.test.ts.snap +211 -0
- package/src/queries/__snapshots__/tvContentRatings.test.ts.snap +115 -0
- package/src/queries/__snapshots__/tvCredits.test.ts.snap +809 -0
- package/src/queries/__snapshots__/tvEpisodeGroups.test.ts.snap +39 -0
- package/src/queries/__snapshots__/tvExternalIds.test.ts.snap +27 -0
- package/src/queries/__snapshots__/tvImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/tvKeywords.test.ts.snap +59 -0
- package/src/queries/__snapshots__/tvRecommendations.test.ts.snap +757 -0
- package/src/queries/__snapshots__/tvReviews.test.ts.snap +562 -0
- package/src/queries/__snapshots__/tvSimilarTvShows.test.ts.snap +759 -0
- package/src/queries/__snapshots__/tvTranslations.test.ts.snap +1267 -0
- package/src/queries/__snapshots__/tvVideos.test.ts.snap +107 -0
- package/src/queries/__snapshots__/tvWatchProviders.test.ts.snap +2817 -0
- package/src/queries/certifications.test.ts +66 -0
- package/src/queries/certifications.ts +29 -0
- package/src/queries/collection.test.ts +47 -0
- package/src/queries/collection.ts +40 -0
- package/src/queries/collectionImages.test.ts +90 -0
- package/src/queries/collectionImages.ts +30 -0
- package/src/queries/collectionTranslations.test.ts +45 -0
- package/src/queries/collectionTranslations.ts +28 -0
- package/src/queries/company.test.ts +45 -0
- package/src/queries/company.ts +40 -0
- package/src/queries/companyAlternativeNames.test.ts +45 -0
- package/src/queries/companyAlternativeNames.ts +29 -0
- package/src/queries/companyLogos.test.ts +45 -0
- package/src/queries/companyLogos.ts +28 -0
- package/src/queries/configuration.test.ts +44 -0
- package/src/queries/configuration.ts +23 -0
- package/src/queries/configurationCountries.test.ts +45 -0
- package/src/queries/configurationCountries.ts +28 -0
- package/src/queries/configurationJobs.test.ts +45 -0
- package/src/queries/configurationJobs.ts +28 -0
- package/src/queries/configurationLanguages.test.ts +45 -0
- package/src/queries/configurationLanguages.ts +28 -0
- package/src/queries/configurationPrimaryTranslations.test.ts +45 -0
- package/src/queries/configurationPrimaryTranslations.ts +29 -0
- package/src/queries/configurationTimezones.test.ts +45 -0
- package/src/queries/configurationTimezones.ts +28 -0
- package/src/queries/credit.test.ts +45 -0
- package/src/queries/credit.ts +26 -0
- package/src/queries/discoverMovies.test.ts +202 -0
- package/src/queries/discoverMovies.ts +65 -0
- package/src/queries/discoverTv.test.ts +142 -0
- package/src/queries/discoverTv.ts +66 -0
- package/src/queries/episode.test.ts +82 -0
- package/src/queries/episode.ts +73 -0
- package/src/queries/episodeCredits.test.ts +134 -0
- package/src/queries/episodeCredits.ts +41 -0
- package/src/queries/episodeExternalIds.test.ts +104 -0
- package/src/queries/episodeExternalIds.ts +40 -0
- package/src/queries/episodeStills.test.ts +96 -0
- package/src/queries/episodeStills.ts +38 -0
- package/src/queries/episodeTranslations.test.ts +96 -0
- package/src/queries/episodeTranslations.ts +38 -0
- package/src/queries/episodeVideos.test.ts +96 -0
- package/src/queries/episodeVideos.ts +38 -0
- package/src/queries/find.test.ts +48 -0
- package/src/queries/find.ts +35 -0
- package/src/queries/genres.test.ts +66 -0
- package/src/queries/genres.ts +29 -0
- package/src/queries/keyword.test.ts +45 -0
- package/src/queries/keyword.ts +28 -0
- package/src/queries/movie.test.ts +81 -0
- package/src/queries/movie.ts +87 -0
- package/src/queries/movieAlternativeTitles.test.ts +95 -0
- package/src/queries/movieAlternativeTitles.ts +37 -0
- package/src/queries/movieCredits.test.ts +118 -0
- package/src/queries/movieCredits.ts +35 -0
- package/src/queries/movieExternalIds.test.ts +95 -0
- package/src/queries/movieExternalIds.ts +35 -0
- package/src/queries/movieImages.test.ts +118 -0
- package/src/queries/movieImages.ts +35 -0
- package/src/queries/movieKeywords.test.ts +95 -0
- package/src/queries/movieKeywords.ts +33 -0
- package/src/queries/movieRecommendations.test.ts +173 -0
- package/src/queries/movieRecommendations.ts +74 -0
- package/src/queries/movieReleaseDates.test.ts +103 -0
- package/src/queries/movieReleaseDates.ts +34 -0
- package/src/queries/movieReviews.test.ts +152 -0
- package/src/queries/movieReviews.ts +74 -0
- package/src/queries/movieSimilarMovies.test.ts +173 -0
- package/src/queries/movieSimilarMovies.ts +74 -0
- package/src/queries/movieTranslations.test.ts +99 -0
- package/src/queries/movieTranslations.ts +33 -0
- package/src/queries/movieVideos.test.ts +95 -0
- package/src/queries/movieVideos.ts +33 -0
- package/src/queries/movieWatchProviders.test.ts +103 -0
- package/src/queries/movieWatchProviders.ts +33 -0
- package/src/queries/network.test.ts +45 -0
- package/src/queries/network.ts +40 -0
- package/src/queries/networkAlternativeNames.test.ts +45 -0
- package/src/queries/networkAlternativeNames.ts +29 -0
- package/src/queries/networkLogos.test.ts +45 -0
- package/src/queries/networkLogos.ts +28 -0
- package/src/queries/person.test.ts +81 -0
- package/src/queries/person.ts +67 -0
- package/src/queries/personCombinedCredits.test.ts +99 -0
- package/src/queries/personCombinedCredits.ts +35 -0
- package/src/queries/personExternalIds.test.ts +99 -0
- package/src/queries/personExternalIds.ts +35 -0
- package/src/queries/personMovieCredits.test.ts +99 -0
- package/src/queries/personMovieCredits.ts +35 -0
- package/src/queries/personProfiles.test.ts +98 -0
- package/src/queries/personProfiles.ts +33 -0
- package/src/queries/personTranslations.test.ts +99 -0
- package/src/queries/personTranslations.ts +33 -0
- package/src/queries/personTvCredits.test.ts +99 -0
- package/src/queries/personTvCredits.ts +35 -0
- package/src/queries/rated.test.ts +170 -0
- package/src/queries/rated.ts +70 -0
- package/src/queries/review.test.ts +45 -0
- package/src/queries/review.ts +40 -0
- package/src/queries/search.test.ts +426 -0
- package/src/queries/search.ts +73 -0
- package/src/queries/season.test.ts +82 -0
- package/src/queries/season.ts +78 -0
- package/src/queries/seasonCredits.test.ts +118 -0
- package/src/queries/seasonCredits.ts +35 -0
- package/src/queries/seasonEpisodeCount.ts +9 -0
- package/src/queries/seasonExternalIds.test.ts +103 -0
- package/src/queries/seasonExternalIds.ts +35 -0
- package/src/queries/seasonPosters.test.ts +94 -0
- package/src/queries/seasonPosters.ts +33 -0
- package/src/queries/seasonTranslations.test.ts +102 -0
- package/src/queries/seasonTranslations.ts +33 -0
- package/src/queries/seasonVideos.test.ts +102 -0
- package/src/queries/seasonVideos.ts +33 -0
- package/src/queries/trending.test.ts +165 -0
- package/src/queries/trending.ts +70 -0
- package/src/queries/tv.test.ts +81 -0
- package/src/queries/tv.ts +98 -0
- package/src/queries/tvAlternativeTitles.test.ts +103 -0
- package/src/queries/tvAlternativeTitles.ts +35 -0
- package/src/queries/tvContentRatings.test.ts +103 -0
- package/src/queries/tvContentRatings.ts +35 -0
- package/src/queries/tvCredits.test.ts +118 -0
- package/src/queries/tvCredits.ts +35 -0
- package/src/queries/tvEpisodeGroups.test.ts +103 -0
- package/src/queries/tvEpisodeGroups.ts +34 -0
- package/src/queries/tvExternalIds.test.ts +103 -0
- package/src/queries/tvExternalIds.ts +35 -0
- package/src/queries/tvImages.test.ts +118 -0
- package/src/queries/tvImages.ts +35 -0
- package/src/queries/tvKeywords.test.ts +103 -0
- package/src/queries/tvKeywords.ts +33 -0
- package/src/queries/tvRecommendations.test.ts +173 -0
- package/src/queries/tvRecommendations.ts +74 -0
- package/src/queries/tvReviews.test.ts +168 -0
- package/src/queries/tvReviews.ts +74 -0
- package/src/queries/tvSimilarTvShows.test.ts +168 -0
- package/src/queries/tvSimilarTvShows.ts +74 -0
- package/src/queries/tvTranslations.test.ts +103 -0
- package/src/queries/tvTranslations.ts +33 -0
- package/src/queries/tvVideos.test.ts +103 -0
- package/src/queries/tvVideos.ts +33 -0
- package/src/queries/tvWatchProviders.test.ts +103 -0
- package/src/queries/tvWatchProviders.ts +33 -0
- package/src/queries/videoType.ts +4 -0
- package/src/types.ts +476 -0
- package/tsconfig.build.json +11 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,1361 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`resolvePersonTvCredits > should return the person tv credits 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"cast": [
|
|
6
|
+
{
|
|
7
|
+
"backdrop_path": "/7I5VX5Vr1jrUvikA7mTje97dT2e.jpg",
|
|
8
|
+
"character": "Self",
|
|
9
|
+
"credit_id": "52572838760ee3776a28e611",
|
|
10
|
+
"episode_count": 2,
|
|
11
|
+
"first_air_date": "1997-08-11",
|
|
12
|
+
"genre_ids": [
|
|
13
|
+
10767,
|
|
14
|
+
],
|
|
15
|
+
"id": 2221,
|
|
16
|
+
"name": "The View",
|
|
17
|
+
"origin_country": [
|
|
18
|
+
"US",
|
|
19
|
+
],
|
|
20
|
+
"original_language": "en",
|
|
21
|
+
"original_name": "The View",
|
|
22
|
+
"overview": "ABC Daytime's morning chatfest, currently featuring Whoopi Goldberg, Joy Behar, Sunny Hostin, Meghan McCain, and Abby Huntsman, discussing the most exciting events of the day. Hot topics in the news, the best experts in their field, celebrity interviews and general entertainment are all part of The View.",
|
|
23
|
+
"popularity": 50.644,
|
|
24
|
+
"poster_path": "/zn5ZtKXYo8XOoXUgtQxw7q2CjVt.jpg",
|
|
25
|
+
"vote_average": 4.7,
|
|
26
|
+
"vote_count": 63,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"backdrop_path": "/1xFGbReR3wAm6CHA2nPAJhXHMxW.jpg",
|
|
30
|
+
"character": "",
|
|
31
|
+
"credit_id": "525729c2760ee3776a2b9e61",
|
|
32
|
+
"episode_count": 2,
|
|
33
|
+
"first_air_date": "1965-09-19",
|
|
34
|
+
"genre_ids": [
|
|
35
|
+
18,
|
|
36
|
+
80,
|
|
37
|
+
],
|
|
38
|
+
"id": 2223,
|
|
39
|
+
"name": "The F.B.I.",
|
|
40
|
+
"origin_country": [
|
|
41
|
+
"US",
|
|
42
|
+
],
|
|
43
|
+
"original_language": "en",
|
|
44
|
+
"original_name": "The F.B.I.",
|
|
45
|
+
"overview": "The F.B.I. is an American television series that was broadcast on ABC from 1965 to 1974. It was sponsored by the Ford Motor Company, and the characters almost always drove Ford vehicles in the series. Alcoa was co-sponsor of Season One only.",
|
|
46
|
+
"popularity": 13.79,
|
|
47
|
+
"poster_path": "/tUlL68lFmnonSg180QJ59ipnd7c.jpg",
|
|
48
|
+
"vote_average": 4.8,
|
|
49
|
+
"vote_count": 11,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"backdrop_path": null,
|
|
53
|
+
"character": "",
|
|
54
|
+
"credit_id": "52574ddc760ee36aaa172dc9",
|
|
55
|
+
"episode_count": 1,
|
|
56
|
+
"first_air_date": "1999-11-01",
|
|
57
|
+
"genre_ids": [
|
|
58
|
+
10763,
|
|
59
|
+
],
|
|
60
|
+
"id": 3167,
|
|
61
|
+
"name": "The Early Show",
|
|
62
|
+
"origin_country": [
|
|
63
|
+
"US",
|
|
64
|
+
],
|
|
65
|
+
"original_language": "en",
|
|
66
|
+
"original_name": "The Early Show",
|
|
67
|
+
"overview": "The Early Show is an American morning television show which was broadcast by CBS from New York City from 1999 to 2012. The program aired live from 7 to 9 a.m. Eastern Time Monday through Friday in the Eastern time zone; most affiliates in the Central, Mountain, and Pacific time zones aired the show on tape-delay from 7 to 9 a.m. local time. The Saturday edition aired live from 7 to 9 a.m. Eastern Time as well, but a number of affiliates did not carry it or aired it later on tape-delay. It premiered on November 1, 1999, and was the newest of the major networks' morning shows, although CBS has made several attempts to program in the morning slot since 1954. The show aired as a division of CBS News.
|
|
68
|
+
|
|
69
|
+
The Early Show, like many of its predecessors, traditionally ran last in the ratings to its rivals, NBC's Today and ABC's Good Morning America. Much like NBC's The Today Show and The Tonight Show, the title The Early Show was analogous to that of CBS's late-night talk show, The Late Show.
|
|
70
|
+
|
|
71
|
+
On November 15, 2011, CBS announced that a new morning show would replace The Early Show on January 9, 2012. CBS News chairman Jeff Fager and CBS News president David Rhodes stated that the new show would "redefine the morning television landscape." On December 1, it was announced that the new show would be titled CBS This Morning. The Early Show ended its twelve-year run on January 6, 2012, to make way for the program. Charlie Rose, Gayle King, and Erica Hill were named anchors of the new program.",
|
|
72
|
+
"popularity": 1.856,
|
|
73
|
+
"poster_path": "/iJvwr7kL0Q7BtrYC38KQ5baPw7g.jpg",
|
|
74
|
+
"vote_average": 5,
|
|
75
|
+
"vote_count": 1,
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"backdrop_path": "/bMc0TiTLaG0WBZicwNPmErlJFvh.jpg",
|
|
79
|
+
"character": "",
|
|
80
|
+
"credit_id": "5257555f760ee36aaa222873",
|
|
81
|
+
"episode_count": 2,
|
|
82
|
+
"first_air_date": "1955-09-10",
|
|
83
|
+
"genre_ids": [
|
|
84
|
+
37,
|
|
85
|
+
10759,
|
|
86
|
+
],
|
|
87
|
+
"id": 3713,
|
|
88
|
+
"name": "Gunsmoke",
|
|
89
|
+
"origin_country": [
|
|
90
|
+
"US",
|
|
91
|
+
],
|
|
92
|
+
"original_language": "en",
|
|
93
|
+
"original_name": "Gunsmoke",
|
|
94
|
+
"overview": "Gunsmoke is an American radio and television Western drama series created by director Norman MacDonnell and writer John Meston. The stories take place in and around Dodge City, Kansas, during the settlement of the American West. The central character is lawman Marshal Matt Dillon, played by William Conrad on radio and James Arness on television.",
|
|
95
|
+
"popularity": 12.714,
|
|
96
|
+
"poster_path": "/x7WjYizqcrA64xi9XLqUWCz5DNk.jpg",
|
|
97
|
+
"vote_average": 6.8,
|
|
98
|
+
"vote_count": 71,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"backdrop_path": "/q9unI9oHyLUNK97RQPYAGjFs4Xu.jpg",
|
|
102
|
+
"character": "Self - Guest",
|
|
103
|
+
"credit_id": "52577166760ee36aaa49b14d",
|
|
104
|
+
"episode_count": 2,
|
|
105
|
+
"first_air_date": "1993-09-13",
|
|
106
|
+
"genre_ids": [
|
|
107
|
+
35,
|
|
108
|
+
10767,
|
|
109
|
+
],
|
|
110
|
+
"id": 4573,
|
|
111
|
+
"name": "Late Night with Conan O'Brien",
|
|
112
|
+
"origin_country": [
|
|
113
|
+
"US",
|
|
114
|
+
],
|
|
115
|
+
"original_language": "en",
|
|
116
|
+
"original_name": "Late Night with Conan O'Brien",
|
|
117
|
+
"overview": "Late Night with Conan O'Brien is an American late-night talk show hosted by Conan O'Brien that aired 2,725 episodes on NBC between 1993 and 2009. The show featured varied comedic material, celebrity interviews, and musical and comedy performances. Late Night aired weeknights at 12:37 am Eastern/11:37 pm Central and 12:37 am Mountain in the United States. From 1993 until 2000, Andy Richter served as O'Brien's sidekick; following his departure, O'Brien was the show's sole featured performer. The show's house musical act was The Max Weinberg 7, led by E Street Band drummer Max Weinberg.
|
|
118
|
+
|
|
119
|
+
The second incarnation of NBC's Late Night franchise, O'Brien's debuted in 1993 after David Letterman, who hosted the first incarnation of Late Night, moved to CBS to host Late Show opposite The Tonight Show. In 2004, as part of a deal to secure a new contract, NBC announced that O'Brien would leave Late Night in 2009 to succeed Jay Leno as the host of The Tonight Show. Jimmy Fallon began hosting his version of Late Night on March 2, 2009.",
|
|
120
|
+
"popularity": 35.531,
|
|
121
|
+
"poster_path": "/gJZ1rhLLFpatuAeylJoUI82DKC7.jpg",
|
|
122
|
+
"vote_average": 7.3,
|
|
123
|
+
"vote_count": 93,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"backdrop_path": "/wqxjNsYAf23SdNHUfQw4As5pIVa.jpg",
|
|
127
|
+
"character": "",
|
|
128
|
+
"credit_id": "5257fda719c29531db3256cf",
|
|
129
|
+
"episode_count": 2,
|
|
130
|
+
"first_air_date": "1962-09-19",
|
|
131
|
+
"genre_ids": [
|
|
132
|
+
18,
|
|
133
|
+
37,
|
|
134
|
+
],
|
|
135
|
+
"id": 10180,
|
|
136
|
+
"name": "The Virginian",
|
|
137
|
+
"origin_country": [
|
|
138
|
+
"US",
|
|
139
|
+
],
|
|
140
|
+
"original_language": "en",
|
|
141
|
+
"original_name": "The Virginian",
|
|
142
|
+
"overview": "The Virginian is an American Western television series starring James Drury and Doug McClure, which aired on NBC from 1962 to 1971 for a total of 249 episodes. It was a spin-off from a 1958 summer series called Decision. Filmed in color, The Virginian became television's first 90-minute western series. Immensely successful, it ran for nine seasons—television's third longest running western. It follows Bonanza at fourteen seasons and 430 episodes, and Gunsmoke at twenty seasons and 635 episodes.",
|
|
143
|
+
"popularity": 39.986,
|
|
144
|
+
"poster_path": "/oAbCE44r6wtmAnfzZI2SxyeaBmW.jpg",
|
|
145
|
+
"vote_average": 6.8,
|
|
146
|
+
"vote_count": 13,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"backdrop_path": "/2C30ZKyYyj0AKxFuBC9atFPN0XL.jpg",
|
|
150
|
+
"character": "Self",
|
|
151
|
+
"credit_id": "5258832c760ee346613ff8f1",
|
|
152
|
+
"episode_count": 4,
|
|
153
|
+
"first_air_date": "1953-03-18",
|
|
154
|
+
"genre_ids": [],
|
|
155
|
+
"id": 27023,
|
|
156
|
+
"name": "The Oscars",
|
|
157
|
+
"origin_country": [
|
|
158
|
+
"US",
|
|
159
|
+
],
|
|
160
|
+
"original_language": "en",
|
|
161
|
+
"original_name": "The Oscars",
|
|
162
|
+
"overview": "An annual American awards ceremony honoring cinematic achievements in the film industry. The various category winners are awarded a copy of a statuette, officially the Academy Award of Merit, that is better known by its nickname Oscar.",
|
|
163
|
+
"popularity": 10.378,
|
|
164
|
+
"poster_path": "/wF43fJ8D85i79ZrLZsnUZ2JurbP.jpg",
|
|
165
|
+
"vote_average": 6.9,
|
|
166
|
+
"vote_count": 46,
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"backdrop_path": "/cvwKsMZoaJOsdVuQXAvGODbnTUz.jpg",
|
|
170
|
+
"character": "",
|
|
171
|
+
"credit_id": "5253462019c29579400c7b14",
|
|
172
|
+
"episode_count": 1,
|
|
173
|
+
"first_air_date": "1994-06-01",
|
|
174
|
+
"genre_ids": [
|
|
175
|
+
10767,
|
|
176
|
+
],
|
|
177
|
+
"id": 217,
|
|
178
|
+
"name": "Inside the Actors Studio",
|
|
179
|
+
"origin_country": [
|
|
180
|
+
"US",
|
|
181
|
+
],
|
|
182
|
+
"original_language": "en",
|
|
183
|
+
"original_name": "Inside the Actors Studio",
|
|
184
|
+
"overview": "James Lipton sits down with some of the world's most accomplished actors and directors for penetrating, fascinating interviews.",
|
|
185
|
+
"popularity": 1.4,
|
|
186
|
+
"poster_path": "/a6O7gKJQe5HWaMujYvdMYaj9PnO.jpg",
|
|
187
|
+
"vote_average": 7.9,
|
|
188
|
+
"vote_count": 34,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"backdrop_path": "/48owQZcn8kP6Gfq2IQ7vPFmvKYu.jpg",
|
|
192
|
+
"character": "",
|
|
193
|
+
"credit_id": "5253873719c29579402186f3",
|
|
194
|
+
"episode_count": 1,
|
|
195
|
+
"first_air_date": "2003-09-08",
|
|
196
|
+
"genre_ids": [
|
|
197
|
+
35,
|
|
198
|
+
10767,
|
|
199
|
+
],
|
|
200
|
+
"id": 562,
|
|
201
|
+
"name": "The Ellen DeGeneres Show",
|
|
202
|
+
"origin_country": [
|
|
203
|
+
"US",
|
|
204
|
+
],
|
|
205
|
+
"original_language": "en",
|
|
206
|
+
"original_name": "The Ellen DeGeneres Show",
|
|
207
|
+
"overview": "The Ellen DeGeneres Show, often shortened to just Ellen, is an American television talk show hosted by comedian/actress Ellen DeGeneres.",
|
|
208
|
+
"popularity": 38.35,
|
|
209
|
+
"poster_path": "/PhUYIGUUk1RzWq2Aw3TqH65McE.jpg",
|
|
210
|
+
"vote_average": 6,
|
|
211
|
+
"vote_count": 113,
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"backdrop_path": "/2MNotLdLonGP783K4AWGQ16X2fI.jpg",
|
|
215
|
+
"character": "",
|
|
216
|
+
"credit_id": "52570651760ee3776a022548",
|
|
217
|
+
"episode_count": 1,
|
|
218
|
+
"first_air_date": "1972-10-14",
|
|
219
|
+
"genre_ids": [
|
|
220
|
+
10759,
|
|
221
|
+
18,
|
|
222
|
+
37,
|
|
223
|
+
],
|
|
224
|
+
"id": 1472,
|
|
225
|
+
"name": "Kung Fu",
|
|
226
|
+
"origin_country": [
|
|
227
|
+
"US",
|
|
228
|
+
],
|
|
229
|
+
"original_language": "en",
|
|
230
|
+
"original_name": "Kung Fu",
|
|
231
|
+
"overview": "The adventures of a Shaolin Monk as he wanders the American West armed only with his skill in Kung Fu.",
|
|
232
|
+
"popularity": 0.705,
|
|
233
|
+
"poster_path": "/cOCOp9NjUUO4rdgYRAboMzIFl1B.jpg",
|
|
234
|
+
"vote_average": 7.9,
|
|
235
|
+
"vote_count": 128,
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"backdrop_path": null,
|
|
239
|
+
"character": "",
|
|
240
|
+
"credit_id": "525713a9760ee3776a10d7b1",
|
|
241
|
+
"episode_count": 1,
|
|
242
|
+
"first_air_date": "1952-01-14",
|
|
243
|
+
"genre_ids": [
|
|
244
|
+
10763,
|
|
245
|
+
10767,
|
|
246
|
+
],
|
|
247
|
+
"id": 1709,
|
|
248
|
+
"name": "Today",
|
|
249
|
+
"origin_country": [
|
|
250
|
+
"US",
|
|
251
|
+
],
|
|
252
|
+
"original_language": "en",
|
|
253
|
+
"original_name": "Today",
|
|
254
|
+
"overview": "Today is a daily American morning television show that airs on NBC. The program debuted on January 14, 1952. It was the first of its genre on American television and in the world, and is the fifth-longest running American television series. Originally a two-hour program on weekdays, it expanded to Sundays in 1987 and Saturdays in 1992. The weekday broadcast expanded to three hours in 2000, and to four hours in 2007.
|
|
255
|
+
|
|
256
|
+
Today's dominance was virtually unchallenged by the other networks until the late 1980s, when it was overtaken by ABC's Good Morning America. Today retook the Nielsen ratings lead the week of December 11, 1995, and held onto that position for 852 consecutive weeks until the week of April 9, 2012, when it was beaten by Good Morning America yet again. In 2002, Today was ranked #17 on TV Guide's 50 Greatest Television Shows of All Time.",
|
|
257
|
+
"popularity": 3.805,
|
|
258
|
+
"poster_path": "/xlWdasY9oYg3OO5VTNqlPFftgya.jpg",
|
|
259
|
+
"vote_average": 5.6,
|
|
260
|
+
"vote_count": 16,
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"backdrop_path": "/uyilhJ7MBLjiaQXboaEwe44Z0jA.jpg",
|
|
264
|
+
"character": "Self",
|
|
265
|
+
"credit_id": "52572a53760ee3776a2c95ad",
|
|
266
|
+
"episode_count": 3,
|
|
267
|
+
"first_air_date": "1996-07-22",
|
|
268
|
+
"genre_ids": [
|
|
269
|
+
10763,
|
|
270
|
+
35,
|
|
271
|
+
],
|
|
272
|
+
"id": 2224,
|
|
273
|
+
"name": "The Daily Show with Trevor Noah",
|
|
274
|
+
"origin_country": [
|
|
275
|
+
"US",
|
|
276
|
+
],
|
|
277
|
+
"original_language": "en",
|
|
278
|
+
"original_name": "The Daily Show with Trevor Noah",
|
|
279
|
+
"overview": "Trevor Noah and The World's Fakest News Team tackle the biggest stories in news, politics and pop culture.",
|
|
280
|
+
"popularity": 157.524,
|
|
281
|
+
"poster_path": "/nz5fAg1OomLZ7fxiM4RnLbJxppc.jpg",
|
|
282
|
+
"vote_average": 6.4,
|
|
283
|
+
"vote_count": 365,
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"backdrop_path": "/lN81B3YJ0cwnII3UJaHoIHwNN4J.jpg",
|
|
287
|
+
"character": "",
|
|
288
|
+
"credit_id": "52573ba3760ee36aaa01c300",
|
|
289
|
+
"episode_count": 5,
|
|
290
|
+
"first_air_date": "1992-05-25",
|
|
291
|
+
"genre_ids": [
|
|
292
|
+
35,
|
|
293
|
+
10767,
|
|
294
|
+
],
|
|
295
|
+
"id": 2518,
|
|
296
|
+
"name": "The Tonight Show with Jay Leno",
|
|
297
|
+
"origin_country": [
|
|
298
|
+
"US",
|
|
299
|
+
],
|
|
300
|
+
"original_language": "en",
|
|
301
|
+
"original_name": "The Tonight Show with Jay Leno",
|
|
302
|
+
"overview": "The Tonight Show with Jay Leno is an American late-night talk show hosted by Jay Leno that initially aired from May 25, 1992 to May 29, 2009, and resumed production on March 1, 2010. The fourth incarnation of the Tonight Show franchise made its debut on May 25, 1992, three days following Johnny Carson's retirement as host of the program. The program originates from NBC Studios in Burbank, California, and is broadcast Monday through Friday at 11:35 PM in the Eastern and Pacific time zones. Unlike Carson or his predecessor Jack Paar, Leno only once utilized a guest host, preferring to host the series by himself.
|
|
303
|
+
|
|
304
|
+
On April 26, 1999, the show began broadcasting in 1080i HDTV, becoming the first American nightly talk show to be shot in high definition. The show is shot in 16:9 aspect ratio.
|
|
305
|
+
|
|
306
|
+
The series, which followed the same basic format as that of his predecessors, ran until May 29, 2009, after which Leno was succeeded by Conan O'Brien. NBC signed Leno to a new deal for a nightly talk show in the 10:00 pm ET timeslot. The primetime series, titled The Jay Leno Show, debuted on September 14, 2009, following a similar format to the Leno incarnation of Tonight.",
|
|
307
|
+
"popularity": 30.852,
|
|
308
|
+
"poster_path": "/irA6aNsYCpN7Uo4EDQo8Fu6uzh7.jpg",
|
|
309
|
+
"vote_average": 5.3,
|
|
310
|
+
"vote_count": 59,
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"backdrop_path": "/7lYBvjfgrguOUgnS9NrpysHtaCq.jpg",
|
|
314
|
+
"character": "Tom Stowe",
|
|
315
|
+
"credit_id": "52577246760ee36aaa4b2c5d",
|
|
316
|
+
"episode_count": 1,
|
|
317
|
+
"first_air_date": "1967-03-28",
|
|
318
|
+
"genre_ids": [
|
|
319
|
+
18,
|
|
320
|
+
],
|
|
321
|
+
"id": 4582,
|
|
322
|
+
"name": "Ironside",
|
|
323
|
+
"origin_country": [
|
|
324
|
+
"US",
|
|
325
|
+
],
|
|
326
|
+
"original_language": "en",
|
|
327
|
+
"original_name": "Ironside",
|
|
328
|
+
"overview": "Ironside is a Universal television series that ran on NBC from September 14, 1967 to January 16, 1975. The show starred Raymond Burr as a paraplegic Chief of Detectives, Robert T. Ironside. The character debuted on March 28, 1967 in a TV movie. When broadcast in the United Kingdom the show was initially titled A Man Called Ironside. The show earned Burr six Emmy and two Golden Globe nominations.
|
|
329
|
+
|
|
330
|
+
A new television series having the same name, Ironside is currently under development and is scheduled to debut on October 2, 2013.",
|
|
331
|
+
"popularity": 40.802,
|
|
332
|
+
"poster_path": "/Fu9Sv0pQ0s89uWwwXcaG0kiNW7.jpg",
|
|
333
|
+
"vote_average": 7.3,
|
|
334
|
+
"vote_count": 41,
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"backdrop_path": null,
|
|
338
|
+
"character": "Himself",
|
|
339
|
+
"credit_id": "5258095719c29531db3e3b79",
|
|
340
|
+
"episode_count": 1,
|
|
341
|
+
"first_air_date": "2003-06-04",
|
|
342
|
+
"genre_ids": [
|
|
343
|
+
10763,
|
|
344
|
+
99,
|
|
345
|
+
],
|
|
346
|
+
"id": 10946,
|
|
347
|
+
"name": "Celebrities Uncensored",
|
|
348
|
+
"origin_country": [
|
|
349
|
+
"US",
|
|
350
|
+
],
|
|
351
|
+
"original_language": "en",
|
|
352
|
+
"original_name": "Celebrities Uncensored",
|
|
353
|
+
"overview": "Celebrities Uncensored is a TV program on the E! network that edited together amusing paparazzi footage of celebrities, usually in public places such as public sidewalks, restaurants, nightclubs, etc. The celebrities were often friendly, but sometimes their more unfriendly antics were featured in an amusing and entertaining way. It was very popular with stars on the rise and created a stir in the Hollywood community. Paris Hilton was first brought to the public's attention by this show.",
|
|
354
|
+
"popularity": 0.6,
|
|
355
|
+
"poster_path": null,
|
|
356
|
+
"vote_average": 2.7,
|
|
357
|
+
"vote_count": 3,
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"backdrop_path": null,
|
|
361
|
+
"character": "",
|
|
362
|
+
"credit_id": "52583c25760ee36aaa9a6e56",
|
|
363
|
+
"episode_count": 1,
|
|
364
|
+
"first_air_date": "1999-06-07",
|
|
365
|
+
"genre_ids": [
|
|
366
|
+
99,
|
|
367
|
+
],
|
|
368
|
+
"id": 16016,
|
|
369
|
+
"name": "Where Are They Now?",
|
|
370
|
+
"origin_country": [
|
|
371
|
+
"US",
|
|
372
|
+
],
|
|
373
|
+
"original_language": "en",
|
|
374
|
+
"original_name": "Where Are They Now?",
|
|
375
|
+
"overview": "Where Are They Now? was a television series on VH1 that featured past celebrities and updated on their current professional and personal status. Each episode was dedicated to another genre.
|
|
376
|
+
|
|
377
|
+
Though not always in sequence, some episodes were a continuation of the motif of episodes from the past. Those episodes sometimes had Roman numerals in their title to signify their sequel status.",
|
|
378
|
+
"popularity": 11.936,
|
|
379
|
+
"poster_path": null,
|
|
380
|
+
"vote_average": 7.5,
|
|
381
|
+
"vote_count": 2,
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"backdrop_path": null,
|
|
385
|
+
"character": "",
|
|
386
|
+
"credit_id": "52587429760ee34661275e7f",
|
|
387
|
+
"episode_count": 1,
|
|
388
|
+
"first_air_date": "1999-01-01",
|
|
389
|
+
"genre_ids": [
|
|
390
|
+
99,
|
|
391
|
+
],
|
|
392
|
+
"id": 23726,
|
|
393
|
+
"name": "The Directors",
|
|
394
|
+
"origin_country": [
|
|
395
|
+
"US",
|
|
396
|
+
],
|
|
397
|
+
"original_language": "en",
|
|
398
|
+
"original_name": "The Directors",
|
|
399
|
+
"overview": "Documentary biography series featuring profiles of various famous film directors.",
|
|
400
|
+
"popularity": 5.665,
|
|
401
|
+
"poster_path": "/tFbnlmwJsvvQU57nAJMnwoP6S7S.jpg",
|
|
402
|
+
"vote_average": 7,
|
|
403
|
+
"vote_count": 2,
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"backdrop_path": "/lV9jwkGJC5iIYnMwq645UZ56W2.jpg",
|
|
407
|
+
"character": "",
|
|
408
|
+
"credit_id": "525899cc760ee346615d9af8",
|
|
409
|
+
"episode_count": 1,
|
|
410
|
+
"first_air_date": "2009-09-14",
|
|
411
|
+
"genre_ids": [],
|
|
412
|
+
"id": 30769,
|
|
413
|
+
"name": "Live from Studio Five",
|
|
414
|
+
"origin_country": [
|
|
415
|
+
"GB",
|
|
416
|
+
],
|
|
417
|
+
"original_language": "en",
|
|
418
|
+
"original_name": "Live from Studio Five",
|
|
419
|
+
"overview": "Live from Studio Five was an early-evening British magazine programme which was produced by Sky News for Channel 5. It was presented by Kate Walsh and a line-up of other co-presenters during its run. It consisted of interviews and discussing topical issues, with an emphasis on showbusiness news and celebrity gossip, after originally covering stories from a popular news agenda. It aired its final edition on 4 February 2011 and was replaced by OK! TV in February 2011 which lasted just nine months on air before itself being axed.",
|
|
420
|
+
"popularity": 3.596,
|
|
421
|
+
"poster_path": "/qvcklKVYE12ZUOniclBp1t2QsKP.jpg",
|
|
422
|
+
"vote_average": 3.8,
|
|
423
|
+
"vote_count": 9,
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"backdrop_path": "/6tIHF6spOHL5rQ5HoQ3EVyL5uag.jpg",
|
|
427
|
+
"character": "Narrator",
|
|
428
|
+
"credit_id": "53e444ab0e0a262b80005cb2",
|
|
429
|
+
"episode_count": 1,
|
|
430
|
+
"first_air_date": "1974-03-03",
|
|
431
|
+
"genre_ids": [
|
|
432
|
+
99,
|
|
433
|
+
],
|
|
434
|
+
"id": 3562,
|
|
435
|
+
"name": "NOVA",
|
|
436
|
+
"origin_country": [
|
|
437
|
+
"US",
|
|
438
|
+
],
|
|
439
|
+
"original_language": "en",
|
|
440
|
+
"original_name": "NOVA",
|
|
441
|
+
"overview": "PBS' premier science series helps viewers of all ages explore the science behind the headlines. Along the way, NOVA demystifies science and technology, and highlights the people involved in scientific pursuits.",
|
|
442
|
+
"popularity": 50.576,
|
|
443
|
+
"poster_path": "/giUBXYnDAaJgNqA6iE3BMVE2EHp.jpg",
|
|
444
|
+
"vote_average": 7.1,
|
|
445
|
+
"vote_count": 74,
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"backdrop_path": null,
|
|
449
|
+
"character": "Host",
|
|
450
|
+
"credit_id": "552de18fc3a3686be2001934",
|
|
451
|
+
"episode_count": 1,
|
|
452
|
+
"first_air_date": "1981-10-05",
|
|
453
|
+
"genre_ids": [],
|
|
454
|
+
"id": 49093,
|
|
455
|
+
"name": "Great Movie Stunts: Raiders of the Lost Ark",
|
|
456
|
+
"origin_country": [],
|
|
457
|
+
"original_language": "en",
|
|
458
|
+
"original_name": "Great Movie Stunts: Raiders of the Lost Ark",
|
|
459
|
+
"overview": "This is a neat little documentary, aired on television and released on video. It is hosted by a bearded Harrison Ford who does some of his own stunts in Raiders of the Lost Ark. Many of the stunts in the film are shown and discussed at length. Ford chats with other stuntmen on the set of Raiders of the Lost Ark, and one point boasts that he has to work harder then real stuntmen, because he has to stay in character during the stunts he performs. That aside, for most of the documentary Ford stays in awe of the stuntmen, as probably most viewers would be. The documentary is rather fascinating and features plenty of insight into the stunt world by not just the stuntmen, but Ford and even Steven Speilberg. This documentary also takes a look at the history of movie stunts and shows a few stunts dating back to the early days of motion pictures, and shows a few frightening stunt mishaps.",
|
|
460
|
+
"popularity": 1.009,
|
|
461
|
+
"poster_path": null,
|
|
462
|
+
"vote_average": 8,
|
|
463
|
+
"vote_count": 2,
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"backdrop_path": null,
|
|
467
|
+
"character": "Self",
|
|
468
|
+
"credit_id": "55ea182bc3a3682c76006cf5",
|
|
469
|
+
"episode_count": 1,
|
|
470
|
+
"first_air_date": "1981-02-14",
|
|
471
|
+
"genre_ids": [
|
|
472
|
+
18,
|
|
473
|
+
10764,
|
|
474
|
+
35,
|
|
475
|
+
10767,
|
|
476
|
+
],
|
|
477
|
+
"id": 10918,
|
|
478
|
+
"name": "Wanna bet, that..?",
|
|
479
|
+
"origin_country": [
|
|
480
|
+
"DE",
|
|
481
|
+
"US",
|
|
482
|
+
],
|
|
483
|
+
"original_language": "de",
|
|
484
|
+
"original_name": "Wetten, dass..?",
|
|
485
|
+
"overview": "Wetten, dass..? was a long-running German-language entertainment television show. It is the most successful Saturday television show in Europe. Its format was the basis for the British show You Bet! and the American show Wanna Bet?.
|
|
486
|
+
|
|
487
|
+
The shows were broadcast live six to seven times a year from different cities in Germany, Austria, and Switzerland. There have also been seven open-air summer shows, broadcast from Amphitheatre Xanten, Plaça de Toros de Palma de Mallorca, Disneyland Paris, Waldbühne Berlin, and Aspendos Roman Theatre. Each of the shows, which were shown without commercial interruption, were usually scheduled to last for about two hours, but it was not uncommon for a show to run as much as 45 minutes longer.",
|
|
488
|
+
"popularity": 17.027,
|
|
489
|
+
"poster_path": "/4i8719B3j4z5U5EI1mjw3sOjBWe.jpg",
|
|
490
|
+
"vote_average": 5.8,
|
|
491
|
+
"vote_count": 11,
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"backdrop_path": "/2pJYis3LUEgFC3UErTQVgmUV1hN.jpg",
|
|
495
|
+
"character": "Self",
|
|
496
|
+
"credit_id": "59e0bdd3c3a36862000c0009",
|
|
497
|
+
"episode_count": 2,
|
|
498
|
+
"first_air_date": "2007-02-22",
|
|
499
|
+
"genre_ids": [
|
|
500
|
+
35,
|
|
501
|
+
10767,
|
|
502
|
+
],
|
|
503
|
+
"id": 1220,
|
|
504
|
+
"name": "The Graham Norton Show",
|
|
505
|
+
"origin_country": [
|
|
506
|
+
"GB",
|
|
507
|
+
],
|
|
508
|
+
"original_language": "en",
|
|
509
|
+
"original_name": "The Graham Norton Show",
|
|
510
|
+
"overview": "Each week celebrity guests join Irish comedian Graham Norton to discuss what's being going on around the world that week. The guests poke fun and share their opinions on the main news stories. Graham is often joined by a band or artist to play the show out.",
|
|
511
|
+
"popularity": 67.436,
|
|
512
|
+
"poster_path": "/vrbqaBXB8AALynQzpWz6JdCPEJS.jpg",
|
|
513
|
+
"vote_average": 7.2,
|
|
514
|
+
"vote_count": 175,
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"backdrop_path": "/9Ou0cGNLC8dcsvcKMUEi8OL5BSi.jpg",
|
|
518
|
+
"character": "Roger Crane",
|
|
519
|
+
"credit_id": "5c268008c3a3683a5cd0ae71",
|
|
520
|
+
"episode_count": 1,
|
|
521
|
+
"first_air_date": "1969-09-29",
|
|
522
|
+
"genre_ids": [
|
|
523
|
+
35,
|
|
524
|
+
],
|
|
525
|
+
"id": 1825,
|
|
526
|
+
"name": "Love, American Style",
|
|
527
|
+
"origin_country": [
|
|
528
|
+
"US",
|
|
529
|
+
],
|
|
530
|
+
"original_language": "en",
|
|
531
|
+
"original_name": "Love, American Style",
|
|
532
|
+
"overview": "An anthology comedy series featuring a line up of different celebrity guest stars appearing in anywhere from one, two, three, and four short stories or vignettes within an hour about versions of love and romance.",
|
|
533
|
+
"popularity": 19.401,
|
|
534
|
+
"poster_path": "/aSL7chmSyz6aqTebDd8qxTFlwbW.jpg",
|
|
535
|
+
"vote_average": 5.8,
|
|
536
|
+
"vote_count": 12,
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"backdrop_path": null,
|
|
540
|
+
"character": "Self",
|
|
541
|
+
"credit_id": "5cd772999251417580cd624e",
|
|
542
|
+
"episode_count": 1,
|
|
543
|
+
"first_air_date": "1948-01-01",
|
|
544
|
+
"genre_ids": [
|
|
545
|
+
10764,
|
|
546
|
+
],
|
|
547
|
+
"id": 89293,
|
|
548
|
+
"name": "Bambi Awards",
|
|
549
|
+
"origin_country": [
|
|
550
|
+
"DE",
|
|
551
|
+
],
|
|
552
|
+
"original_language": "de",
|
|
553
|
+
"original_name": "Bambi-Verleihung",
|
|
554
|
+
"overview": "The Bambi, often called the Bambi Award and stylised as BAMBI, is a German award presented annually by Hubert Burda Media to recognize excellence in international media and television to personalities in the media, arts, culture, sports, and other fields "with vision and creativity who affected and inspired the German public that year", both domestic and foreign. First held in 1948, it is the oldest media award in Germany. The trophy is named after Felix Salten's book Bambi, A Life in the Woods and its statuettes are in the shape of the novel's titular fawn character. They were originally made of porcelain until 1958, when the organizers switched to using gold, with the casting done by the art casting workshop of Ernst Strassacker in Süßen.",
|
|
555
|
+
"popularity": 41.12,
|
|
556
|
+
"poster_path": "/7Bc1fE5mKIYmhhgl0fVcw3nvDra.jpg",
|
|
557
|
+
"vote_average": 0,
|
|
558
|
+
"vote_count": 0,
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"backdrop_path": "/tSCRnfNAmfW5KrGBc4A1ro8edfa.jpg",
|
|
562
|
+
"character": "The Ocean",
|
|
563
|
+
"credit_id": "5d4c3d9321c4ca0018fcd258",
|
|
564
|
+
"episode_count": 1,
|
|
565
|
+
"first_air_date": "2015-08-12",
|
|
566
|
+
"genre_ids": [
|
|
567
|
+
99,
|
|
568
|
+
],
|
|
569
|
+
"id": 87269,
|
|
570
|
+
"name": "Nature Is Speaking",
|
|
571
|
+
"origin_country": [
|
|
572
|
+
"US",
|
|
573
|
+
],
|
|
574
|
+
"original_language": "en",
|
|
575
|
+
"original_name": "Nature Is Speaking",
|
|
576
|
+
"overview": "Nature is given a voice to raise awareness that people need nature in order to survive.",
|
|
577
|
+
"popularity": 1.93,
|
|
578
|
+
"poster_path": "/7FuFsaIdPYXT5Q4qVMNwgZYxPYZ.jpg",
|
|
579
|
+
"vote_average": 10,
|
|
580
|
+
"vote_count": 1,
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"backdrop_path": "/rxyNUXXcQ9Fht5vy6Zc3HT0as8M.jpg",
|
|
584
|
+
"character": "himself",
|
|
585
|
+
"credit_id": "5eeff10ab0cd200034b801fb",
|
|
586
|
+
"episode_count": 1,
|
|
587
|
+
"first_air_date": "1987-10-01",
|
|
588
|
+
"genre_ids": [
|
|
589
|
+
10763,
|
|
590
|
+
10767,
|
|
591
|
+
],
|
|
592
|
+
"id": 46044,
|
|
593
|
+
"name": "Sat.1-Frühstücksfernsehen",
|
|
594
|
+
"origin_country": [
|
|
595
|
+
"DE",
|
|
596
|
+
],
|
|
597
|
+
"original_language": "de",
|
|
598
|
+
"original_name": "Sat.1-Frühstücksfernsehen",
|
|
599
|
+
"overview": "A German broadcast magazine, similar to a News channel, that has been running since 1987 and is on every Monday through Friday.",
|
|
600
|
+
"popularity": 4.081,
|
|
601
|
+
"poster_path": "/x6RTSU6dZaKWAgGudifB2z3BOMI.jpg",
|
|
602
|
+
"vote_average": 0,
|
|
603
|
+
"vote_count": 0,
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"backdrop_path": null,
|
|
607
|
+
"character": "self",
|
|
608
|
+
"credit_id": "5f93737084448e74cb99b99b",
|
|
609
|
+
"episode_count": 1,
|
|
610
|
+
"first_air_date": "1997-07-23",
|
|
611
|
+
"genre_ids": [
|
|
612
|
+
10763,
|
|
613
|
+
],
|
|
614
|
+
"id": 111979,
|
|
615
|
+
"name": "Leute heute",
|
|
616
|
+
"origin_country": [
|
|
617
|
+
"DE",
|
|
618
|
+
],
|
|
619
|
+
"original_language": "de",
|
|
620
|
+
"original_name": "Leute heute",
|
|
621
|
+
"overview": "",
|
|
622
|
+
"popularity": 5.177,
|
|
623
|
+
"poster_path": null,
|
|
624
|
+
"vote_average": 0,
|
|
625
|
+
"vote_count": 0,
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"backdrop_path": "/2Ib8kvWa9gGhJrAfGlhIvbmtbWn.jpg",
|
|
629
|
+
"character": "Self",
|
|
630
|
+
"credit_id": "5fe786eb1ac292003dbe258c",
|
|
631
|
+
"episode_count": 2,
|
|
632
|
+
"first_air_date": "2010-11-08",
|
|
633
|
+
"genre_ids": [
|
|
634
|
+
10767,
|
|
635
|
+
35,
|
|
636
|
+
10763,
|
|
637
|
+
],
|
|
638
|
+
"id": 32415,
|
|
639
|
+
"name": "Conan",
|
|
640
|
+
"origin_country": [
|
|
641
|
+
"US",
|
|
642
|
+
],
|
|
643
|
+
"original_language": "en",
|
|
644
|
+
"original_name": "Conan",
|
|
645
|
+
"overview": "A late night television talk show hosted by Conan O'Brien.",
|
|
646
|
+
"popularity": 124.033,
|
|
647
|
+
"poster_path": "/oQxrvUhP3ycwnlxIrIMQ9Z3kleq.jpg",
|
|
648
|
+
"vote_average": 7.2,
|
|
649
|
+
"vote_count": 149,
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"backdrop_path": "/g7LbxsatbTazDKnaFPDQz5fi2aH.jpg",
|
|
653
|
+
"character": "Indiana Jones - age 50",
|
|
654
|
+
"credit_id": "5fff8f577390c0003bf49e30",
|
|
655
|
+
"episode_count": 1,
|
|
656
|
+
"first_air_date": "1992-03-04",
|
|
657
|
+
"genre_ids": [
|
|
658
|
+
10759,
|
|
659
|
+
18,
|
|
660
|
+
],
|
|
661
|
+
"id": 661,
|
|
662
|
+
"name": "The Young Indiana Jones Chronicles",
|
|
663
|
+
"origin_country": [
|
|
664
|
+
"US",
|
|
665
|
+
],
|
|
666
|
+
"original_language": "en",
|
|
667
|
+
"original_name": "The Young Indiana Jones Chronicles",
|
|
668
|
+
"overview": "The Young Indiana Jones Chronicles is an American television series that aired on ABC from March 4, 1992, to July 24, 1993. Filming took place in various locations around Wilmington, North Carolina and on the campus of UNCW. The series was an Amblin Entertainment/Lucasfilm production in association with Paramount Network Television.
|
|
669
|
+
|
|
670
|
+
The series explores the childhood and youth of the fictional character Indiana Jones and primarily stars Sean Patrick Flanery and Corey Carrier as the title character, with George Hall playing an elderly version of Jones for the bookends of most episodes, though Harrison Ford bookended one episode. The show was created and executively produced by George Lucas, who also created, co-wrote and executively produced the Indiana Jones feature films.
|
|
671
|
+
|
|
672
|
+
Due to its enormous budget, the series was cancelled in 1993. However, following the series' cancellation, four made-for-television films were produced from 1994 to 1996 in an attempt to continue the series. In 1999, the series was re-edited into 22 television films under the title The Adventures of Young Indiana Jones.",
|
|
673
|
+
"popularity": 21.177,
|
|
674
|
+
"poster_path": "/a0LIkSfhqSNtWKOH4aTRGuEJB7C.jpg",
|
|
675
|
+
"vote_average": 6.6,
|
|
676
|
+
"vote_count": 71,
|
|
677
|
+
},
|
|
678
|
+
],
|
|
679
|
+
"crew": [],
|
|
680
|
+
}
|
|
681
|
+
`;
|
|
682
|
+
|
|
683
|
+
exports[`resolvePersonTvCredits > when raw person data has tv credits should return the correct response 1`] = `
|
|
684
|
+
{
|
|
685
|
+
"cast": [
|
|
686
|
+
{
|
|
687
|
+
"backdrop_path": "/7I5VX5Vr1jrUvikA7mTje97dT2e.jpg",
|
|
688
|
+
"character": "Self",
|
|
689
|
+
"credit_id": "52572838760ee3776a28e611",
|
|
690
|
+
"episode_count": 2,
|
|
691
|
+
"first_air_date": "1997-08-11",
|
|
692
|
+
"genre_ids": [
|
|
693
|
+
10767,
|
|
694
|
+
],
|
|
695
|
+
"id": 2221,
|
|
696
|
+
"name": "The View",
|
|
697
|
+
"origin_country": [
|
|
698
|
+
"US",
|
|
699
|
+
],
|
|
700
|
+
"original_language": "en",
|
|
701
|
+
"original_name": "The View",
|
|
702
|
+
"overview": "ABC Daytime's morning chatfest, currently featuring Whoopi Goldberg, Joy Behar, Sunny Hostin, Meghan McCain, and Abby Huntsman, discussing the most exciting events of the day. Hot topics in the news, the best experts in their field, celebrity interviews and general entertainment are all part of The View.",
|
|
703
|
+
"popularity": 50.644,
|
|
704
|
+
"poster_path": "/zn5ZtKXYo8XOoXUgtQxw7q2CjVt.jpg",
|
|
705
|
+
"vote_average": 4.7,
|
|
706
|
+
"vote_count": 63,
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"backdrop_path": "/1xFGbReR3wAm6CHA2nPAJhXHMxW.jpg",
|
|
710
|
+
"character": "",
|
|
711
|
+
"credit_id": "525729c2760ee3776a2b9e61",
|
|
712
|
+
"episode_count": 2,
|
|
713
|
+
"first_air_date": "1965-09-19",
|
|
714
|
+
"genre_ids": [
|
|
715
|
+
18,
|
|
716
|
+
80,
|
|
717
|
+
],
|
|
718
|
+
"id": 2223,
|
|
719
|
+
"name": "The F.B.I.",
|
|
720
|
+
"origin_country": [
|
|
721
|
+
"US",
|
|
722
|
+
],
|
|
723
|
+
"original_language": "en",
|
|
724
|
+
"original_name": "The F.B.I.",
|
|
725
|
+
"overview": "The F.B.I. is an American television series that was broadcast on ABC from 1965 to 1974. It was sponsored by the Ford Motor Company, and the characters almost always drove Ford vehicles in the series. Alcoa was co-sponsor of Season One only.",
|
|
726
|
+
"popularity": 13.79,
|
|
727
|
+
"poster_path": "/tUlL68lFmnonSg180QJ59ipnd7c.jpg",
|
|
728
|
+
"vote_average": 4.8,
|
|
729
|
+
"vote_count": 11,
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"backdrop_path": null,
|
|
733
|
+
"character": "",
|
|
734
|
+
"credit_id": "52574ddc760ee36aaa172dc9",
|
|
735
|
+
"episode_count": 1,
|
|
736
|
+
"first_air_date": "1999-11-01",
|
|
737
|
+
"genre_ids": [
|
|
738
|
+
10763,
|
|
739
|
+
],
|
|
740
|
+
"id": 3167,
|
|
741
|
+
"name": "The Early Show",
|
|
742
|
+
"origin_country": [
|
|
743
|
+
"US",
|
|
744
|
+
],
|
|
745
|
+
"original_language": "en",
|
|
746
|
+
"original_name": "The Early Show",
|
|
747
|
+
"overview": "The Early Show is an American morning television show which was broadcast by CBS from New York City from 1999 to 2012. The program aired live from 7 to 9 a.m. Eastern Time Monday through Friday in the Eastern time zone; most affiliates in the Central, Mountain, and Pacific time zones aired the show on tape-delay from 7 to 9 a.m. local time. The Saturday edition aired live from 7 to 9 a.m. Eastern Time as well, but a number of affiliates did not carry it or aired it later on tape-delay. It premiered on November 1, 1999, and was the newest of the major networks' morning shows, although CBS has made several attempts to program in the morning slot since 1954. The show aired as a division of CBS News.
|
|
748
|
+
|
|
749
|
+
The Early Show, like many of its predecessors, traditionally ran last in the ratings to its rivals, NBC's Today and ABC's Good Morning America. Much like NBC's The Today Show and The Tonight Show, the title The Early Show was analogous to that of CBS's late-night talk show, The Late Show.
|
|
750
|
+
|
|
751
|
+
On November 15, 2011, CBS announced that a new morning show would replace The Early Show on January 9, 2012. CBS News chairman Jeff Fager and CBS News president David Rhodes stated that the new show would "redefine the morning television landscape." On December 1, it was announced that the new show would be titled CBS This Morning. The Early Show ended its twelve-year run on January 6, 2012, to make way for the program. Charlie Rose, Gayle King, and Erica Hill were named anchors of the new program.",
|
|
752
|
+
"popularity": 1.856,
|
|
753
|
+
"poster_path": "/iJvwr7kL0Q7BtrYC38KQ5baPw7g.jpg",
|
|
754
|
+
"vote_average": 5,
|
|
755
|
+
"vote_count": 1,
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"backdrop_path": "/bMc0TiTLaG0WBZicwNPmErlJFvh.jpg",
|
|
759
|
+
"character": "",
|
|
760
|
+
"credit_id": "5257555f760ee36aaa222873",
|
|
761
|
+
"episode_count": 2,
|
|
762
|
+
"first_air_date": "1955-09-10",
|
|
763
|
+
"genre_ids": [
|
|
764
|
+
37,
|
|
765
|
+
10759,
|
|
766
|
+
],
|
|
767
|
+
"id": 3713,
|
|
768
|
+
"name": "Gunsmoke",
|
|
769
|
+
"origin_country": [
|
|
770
|
+
"US",
|
|
771
|
+
],
|
|
772
|
+
"original_language": "en",
|
|
773
|
+
"original_name": "Gunsmoke",
|
|
774
|
+
"overview": "Gunsmoke is an American radio and television Western drama series created by director Norman MacDonnell and writer John Meston. The stories take place in and around Dodge City, Kansas, during the settlement of the American West. The central character is lawman Marshal Matt Dillon, played by William Conrad on radio and James Arness on television.",
|
|
775
|
+
"popularity": 12.714,
|
|
776
|
+
"poster_path": "/x7WjYizqcrA64xi9XLqUWCz5DNk.jpg",
|
|
777
|
+
"vote_average": 6.8,
|
|
778
|
+
"vote_count": 71,
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"backdrop_path": "/q9unI9oHyLUNK97RQPYAGjFs4Xu.jpg",
|
|
782
|
+
"character": "Self - Guest",
|
|
783
|
+
"credit_id": "52577166760ee36aaa49b14d",
|
|
784
|
+
"episode_count": 2,
|
|
785
|
+
"first_air_date": "1993-09-13",
|
|
786
|
+
"genre_ids": [
|
|
787
|
+
35,
|
|
788
|
+
10767,
|
|
789
|
+
],
|
|
790
|
+
"id": 4573,
|
|
791
|
+
"name": "Late Night with Conan O'Brien",
|
|
792
|
+
"origin_country": [
|
|
793
|
+
"US",
|
|
794
|
+
],
|
|
795
|
+
"original_language": "en",
|
|
796
|
+
"original_name": "Late Night with Conan O'Brien",
|
|
797
|
+
"overview": "Late Night with Conan O'Brien is an American late-night talk show hosted by Conan O'Brien that aired 2,725 episodes on NBC between 1993 and 2009. The show featured varied comedic material, celebrity interviews, and musical and comedy performances. Late Night aired weeknights at 12:37 am Eastern/11:37 pm Central and 12:37 am Mountain in the United States. From 1993 until 2000, Andy Richter served as O'Brien's sidekick; following his departure, O'Brien was the show's sole featured performer. The show's house musical act was The Max Weinberg 7, led by E Street Band drummer Max Weinberg.
|
|
798
|
+
|
|
799
|
+
The second incarnation of NBC's Late Night franchise, O'Brien's debuted in 1993 after David Letterman, who hosted the first incarnation of Late Night, moved to CBS to host Late Show opposite The Tonight Show. In 2004, as part of a deal to secure a new contract, NBC announced that O'Brien would leave Late Night in 2009 to succeed Jay Leno as the host of The Tonight Show. Jimmy Fallon began hosting his version of Late Night on March 2, 2009.",
|
|
800
|
+
"popularity": 35.531,
|
|
801
|
+
"poster_path": "/gJZ1rhLLFpatuAeylJoUI82DKC7.jpg",
|
|
802
|
+
"vote_average": 7.3,
|
|
803
|
+
"vote_count": 93,
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"backdrop_path": "/wqxjNsYAf23SdNHUfQw4As5pIVa.jpg",
|
|
807
|
+
"character": "",
|
|
808
|
+
"credit_id": "5257fda719c29531db3256cf",
|
|
809
|
+
"episode_count": 2,
|
|
810
|
+
"first_air_date": "1962-09-19",
|
|
811
|
+
"genre_ids": [
|
|
812
|
+
18,
|
|
813
|
+
37,
|
|
814
|
+
],
|
|
815
|
+
"id": 10180,
|
|
816
|
+
"name": "The Virginian",
|
|
817
|
+
"origin_country": [
|
|
818
|
+
"US",
|
|
819
|
+
],
|
|
820
|
+
"original_language": "en",
|
|
821
|
+
"original_name": "The Virginian",
|
|
822
|
+
"overview": "The Virginian is an American Western television series starring James Drury and Doug McClure, which aired on NBC from 1962 to 1971 for a total of 249 episodes. It was a spin-off from a 1958 summer series called Decision. Filmed in color, The Virginian became television's first 90-minute western series. Immensely successful, it ran for nine seasons—television's third longest running western. It follows Bonanza at fourteen seasons and 430 episodes, and Gunsmoke at twenty seasons and 635 episodes.",
|
|
823
|
+
"popularity": 39.986,
|
|
824
|
+
"poster_path": "/oAbCE44r6wtmAnfzZI2SxyeaBmW.jpg",
|
|
825
|
+
"vote_average": 6.8,
|
|
826
|
+
"vote_count": 13,
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"backdrop_path": "/2C30ZKyYyj0AKxFuBC9atFPN0XL.jpg",
|
|
830
|
+
"character": "Self",
|
|
831
|
+
"credit_id": "5258832c760ee346613ff8f1",
|
|
832
|
+
"episode_count": 4,
|
|
833
|
+
"first_air_date": "1953-03-18",
|
|
834
|
+
"genre_ids": [],
|
|
835
|
+
"id": 27023,
|
|
836
|
+
"name": "The Oscars",
|
|
837
|
+
"origin_country": [
|
|
838
|
+
"US",
|
|
839
|
+
],
|
|
840
|
+
"original_language": "en",
|
|
841
|
+
"original_name": "The Oscars",
|
|
842
|
+
"overview": "An annual American awards ceremony honoring cinematic achievements in the film industry. The various category winners are awarded a copy of a statuette, officially the Academy Award of Merit, that is better known by its nickname Oscar.",
|
|
843
|
+
"popularity": 10.378,
|
|
844
|
+
"poster_path": "/wF43fJ8D85i79ZrLZsnUZ2JurbP.jpg",
|
|
845
|
+
"vote_average": 6.9,
|
|
846
|
+
"vote_count": 46,
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"backdrop_path": "/cvwKsMZoaJOsdVuQXAvGODbnTUz.jpg",
|
|
850
|
+
"character": "",
|
|
851
|
+
"credit_id": "5253462019c29579400c7b14",
|
|
852
|
+
"episode_count": 1,
|
|
853
|
+
"first_air_date": "1994-06-01",
|
|
854
|
+
"genre_ids": [
|
|
855
|
+
10767,
|
|
856
|
+
],
|
|
857
|
+
"id": 217,
|
|
858
|
+
"name": "Inside the Actors Studio",
|
|
859
|
+
"origin_country": [
|
|
860
|
+
"US",
|
|
861
|
+
],
|
|
862
|
+
"original_language": "en",
|
|
863
|
+
"original_name": "Inside the Actors Studio",
|
|
864
|
+
"overview": "James Lipton sits down with some of the world's most accomplished actors and directors for penetrating, fascinating interviews.",
|
|
865
|
+
"popularity": 1.4,
|
|
866
|
+
"poster_path": "/a6O7gKJQe5HWaMujYvdMYaj9PnO.jpg",
|
|
867
|
+
"vote_average": 7.9,
|
|
868
|
+
"vote_count": 34,
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"backdrop_path": "/48owQZcn8kP6Gfq2IQ7vPFmvKYu.jpg",
|
|
872
|
+
"character": "",
|
|
873
|
+
"credit_id": "5253873719c29579402186f3",
|
|
874
|
+
"episode_count": 1,
|
|
875
|
+
"first_air_date": "2003-09-08",
|
|
876
|
+
"genre_ids": [
|
|
877
|
+
35,
|
|
878
|
+
10767,
|
|
879
|
+
],
|
|
880
|
+
"id": 562,
|
|
881
|
+
"name": "The Ellen DeGeneres Show",
|
|
882
|
+
"origin_country": [
|
|
883
|
+
"US",
|
|
884
|
+
],
|
|
885
|
+
"original_language": "en",
|
|
886
|
+
"original_name": "The Ellen DeGeneres Show",
|
|
887
|
+
"overview": "The Ellen DeGeneres Show, often shortened to just Ellen, is an American television talk show hosted by comedian/actress Ellen DeGeneres.",
|
|
888
|
+
"popularity": 38.35,
|
|
889
|
+
"poster_path": "/PhUYIGUUk1RzWq2Aw3TqH65McE.jpg",
|
|
890
|
+
"vote_average": 6,
|
|
891
|
+
"vote_count": 113,
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"backdrop_path": "/2MNotLdLonGP783K4AWGQ16X2fI.jpg",
|
|
895
|
+
"character": "",
|
|
896
|
+
"credit_id": "52570651760ee3776a022548",
|
|
897
|
+
"episode_count": 1,
|
|
898
|
+
"first_air_date": "1972-10-14",
|
|
899
|
+
"genre_ids": [
|
|
900
|
+
10759,
|
|
901
|
+
18,
|
|
902
|
+
37,
|
|
903
|
+
],
|
|
904
|
+
"id": 1472,
|
|
905
|
+
"name": "Kung Fu",
|
|
906
|
+
"origin_country": [
|
|
907
|
+
"US",
|
|
908
|
+
],
|
|
909
|
+
"original_language": "en",
|
|
910
|
+
"original_name": "Kung Fu",
|
|
911
|
+
"overview": "The adventures of a Shaolin Monk as he wanders the American West armed only with his skill in Kung Fu.",
|
|
912
|
+
"popularity": 0.705,
|
|
913
|
+
"poster_path": "/cOCOp9NjUUO4rdgYRAboMzIFl1B.jpg",
|
|
914
|
+
"vote_average": 7.9,
|
|
915
|
+
"vote_count": 128,
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"backdrop_path": null,
|
|
919
|
+
"character": "",
|
|
920
|
+
"credit_id": "525713a9760ee3776a10d7b1",
|
|
921
|
+
"episode_count": 1,
|
|
922
|
+
"first_air_date": "1952-01-14",
|
|
923
|
+
"genre_ids": [
|
|
924
|
+
10763,
|
|
925
|
+
10767,
|
|
926
|
+
],
|
|
927
|
+
"id": 1709,
|
|
928
|
+
"name": "Today",
|
|
929
|
+
"origin_country": [
|
|
930
|
+
"US",
|
|
931
|
+
],
|
|
932
|
+
"original_language": "en",
|
|
933
|
+
"original_name": "Today",
|
|
934
|
+
"overview": "Today is a daily American morning television show that airs on NBC. The program debuted on January 14, 1952. It was the first of its genre on American television and in the world, and is the fifth-longest running American television series. Originally a two-hour program on weekdays, it expanded to Sundays in 1987 and Saturdays in 1992. The weekday broadcast expanded to three hours in 2000, and to four hours in 2007.
|
|
935
|
+
|
|
936
|
+
Today's dominance was virtually unchallenged by the other networks until the late 1980s, when it was overtaken by ABC's Good Morning America. Today retook the Nielsen ratings lead the week of December 11, 1995, and held onto that position for 852 consecutive weeks until the week of April 9, 2012, when it was beaten by Good Morning America yet again. In 2002, Today was ranked #17 on TV Guide's 50 Greatest Television Shows of All Time.",
|
|
937
|
+
"popularity": 3.805,
|
|
938
|
+
"poster_path": "/xlWdasY9oYg3OO5VTNqlPFftgya.jpg",
|
|
939
|
+
"vote_average": 5.6,
|
|
940
|
+
"vote_count": 16,
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"backdrop_path": "/uyilhJ7MBLjiaQXboaEwe44Z0jA.jpg",
|
|
944
|
+
"character": "Self",
|
|
945
|
+
"credit_id": "52572a53760ee3776a2c95ad",
|
|
946
|
+
"episode_count": 3,
|
|
947
|
+
"first_air_date": "1996-07-22",
|
|
948
|
+
"genre_ids": [
|
|
949
|
+
10763,
|
|
950
|
+
35,
|
|
951
|
+
],
|
|
952
|
+
"id": 2224,
|
|
953
|
+
"name": "The Daily Show with Trevor Noah",
|
|
954
|
+
"origin_country": [
|
|
955
|
+
"US",
|
|
956
|
+
],
|
|
957
|
+
"original_language": "en",
|
|
958
|
+
"original_name": "The Daily Show with Trevor Noah",
|
|
959
|
+
"overview": "Trevor Noah and The World's Fakest News Team tackle the biggest stories in news, politics and pop culture.",
|
|
960
|
+
"popularity": 157.524,
|
|
961
|
+
"poster_path": "/nz5fAg1OomLZ7fxiM4RnLbJxppc.jpg",
|
|
962
|
+
"vote_average": 6.4,
|
|
963
|
+
"vote_count": 365,
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"backdrop_path": "/lN81B3YJ0cwnII3UJaHoIHwNN4J.jpg",
|
|
967
|
+
"character": "",
|
|
968
|
+
"credit_id": "52573ba3760ee36aaa01c300",
|
|
969
|
+
"episode_count": 5,
|
|
970
|
+
"first_air_date": "1992-05-25",
|
|
971
|
+
"genre_ids": [
|
|
972
|
+
35,
|
|
973
|
+
10767,
|
|
974
|
+
],
|
|
975
|
+
"id": 2518,
|
|
976
|
+
"name": "The Tonight Show with Jay Leno",
|
|
977
|
+
"origin_country": [
|
|
978
|
+
"US",
|
|
979
|
+
],
|
|
980
|
+
"original_language": "en",
|
|
981
|
+
"original_name": "The Tonight Show with Jay Leno",
|
|
982
|
+
"overview": "The Tonight Show with Jay Leno is an American late-night talk show hosted by Jay Leno that initially aired from May 25, 1992 to May 29, 2009, and resumed production on March 1, 2010. The fourth incarnation of the Tonight Show franchise made its debut on May 25, 1992, three days following Johnny Carson's retirement as host of the program. The program originates from NBC Studios in Burbank, California, and is broadcast Monday through Friday at 11:35 PM in the Eastern and Pacific time zones. Unlike Carson or his predecessor Jack Paar, Leno only once utilized a guest host, preferring to host the series by himself.
|
|
983
|
+
|
|
984
|
+
On April 26, 1999, the show began broadcasting in 1080i HDTV, becoming the first American nightly talk show to be shot in high definition. The show is shot in 16:9 aspect ratio.
|
|
985
|
+
|
|
986
|
+
The series, which followed the same basic format as that of his predecessors, ran until May 29, 2009, after which Leno was succeeded by Conan O'Brien. NBC signed Leno to a new deal for a nightly talk show in the 10:00 pm ET timeslot. The primetime series, titled The Jay Leno Show, debuted on September 14, 2009, following a similar format to the Leno incarnation of Tonight.",
|
|
987
|
+
"popularity": 30.852,
|
|
988
|
+
"poster_path": "/irA6aNsYCpN7Uo4EDQo8Fu6uzh7.jpg",
|
|
989
|
+
"vote_average": 5.3,
|
|
990
|
+
"vote_count": 59,
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"backdrop_path": "/7lYBvjfgrguOUgnS9NrpysHtaCq.jpg",
|
|
994
|
+
"character": "Tom Stowe",
|
|
995
|
+
"credit_id": "52577246760ee36aaa4b2c5d",
|
|
996
|
+
"episode_count": 1,
|
|
997
|
+
"first_air_date": "1967-03-28",
|
|
998
|
+
"genre_ids": [
|
|
999
|
+
18,
|
|
1000
|
+
],
|
|
1001
|
+
"id": 4582,
|
|
1002
|
+
"name": "Ironside",
|
|
1003
|
+
"origin_country": [
|
|
1004
|
+
"US",
|
|
1005
|
+
],
|
|
1006
|
+
"original_language": "en",
|
|
1007
|
+
"original_name": "Ironside",
|
|
1008
|
+
"overview": "Ironside is a Universal television series that ran on NBC from September 14, 1967 to January 16, 1975. The show starred Raymond Burr as a paraplegic Chief of Detectives, Robert T. Ironside. The character debuted on March 28, 1967 in a TV movie. When broadcast in the United Kingdom the show was initially titled A Man Called Ironside. The show earned Burr six Emmy and two Golden Globe nominations.
|
|
1009
|
+
|
|
1010
|
+
A new television series having the same name, Ironside is currently under development and is scheduled to debut on October 2, 2013.",
|
|
1011
|
+
"popularity": 40.802,
|
|
1012
|
+
"poster_path": "/Fu9Sv0pQ0s89uWwwXcaG0kiNW7.jpg",
|
|
1013
|
+
"vote_average": 7.3,
|
|
1014
|
+
"vote_count": 41,
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"backdrop_path": null,
|
|
1018
|
+
"character": "Himself",
|
|
1019
|
+
"credit_id": "5258095719c29531db3e3b79",
|
|
1020
|
+
"episode_count": 1,
|
|
1021
|
+
"first_air_date": "2003-06-04",
|
|
1022
|
+
"genre_ids": [
|
|
1023
|
+
10763,
|
|
1024
|
+
99,
|
|
1025
|
+
],
|
|
1026
|
+
"id": 10946,
|
|
1027
|
+
"name": "Celebrities Uncensored",
|
|
1028
|
+
"origin_country": [
|
|
1029
|
+
"US",
|
|
1030
|
+
],
|
|
1031
|
+
"original_language": "en",
|
|
1032
|
+
"original_name": "Celebrities Uncensored",
|
|
1033
|
+
"overview": "Celebrities Uncensored is a TV program on the E! network that edited together amusing paparazzi footage of celebrities, usually in public places such as public sidewalks, restaurants, nightclubs, etc. The celebrities were often friendly, but sometimes their more unfriendly antics were featured in an amusing and entertaining way. It was very popular with stars on the rise and created a stir in the Hollywood community. Paris Hilton was first brought to the public's attention by this show.",
|
|
1034
|
+
"popularity": 0.6,
|
|
1035
|
+
"poster_path": null,
|
|
1036
|
+
"vote_average": 2.7,
|
|
1037
|
+
"vote_count": 3,
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"backdrop_path": null,
|
|
1041
|
+
"character": "",
|
|
1042
|
+
"credit_id": "52583c25760ee36aaa9a6e56",
|
|
1043
|
+
"episode_count": 1,
|
|
1044
|
+
"first_air_date": "1999-06-07",
|
|
1045
|
+
"genre_ids": [
|
|
1046
|
+
99,
|
|
1047
|
+
],
|
|
1048
|
+
"id": 16016,
|
|
1049
|
+
"name": "Where Are They Now?",
|
|
1050
|
+
"origin_country": [
|
|
1051
|
+
"US",
|
|
1052
|
+
],
|
|
1053
|
+
"original_language": "en",
|
|
1054
|
+
"original_name": "Where Are They Now?",
|
|
1055
|
+
"overview": "Where Are They Now? was a television series on VH1 that featured past celebrities and updated on their current professional and personal status. Each episode was dedicated to another genre.
|
|
1056
|
+
|
|
1057
|
+
Though not always in sequence, some episodes were a continuation of the motif of episodes from the past. Those episodes sometimes had Roman numerals in their title to signify their sequel status.",
|
|
1058
|
+
"popularity": 11.936,
|
|
1059
|
+
"poster_path": null,
|
|
1060
|
+
"vote_average": 7.5,
|
|
1061
|
+
"vote_count": 2,
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"backdrop_path": null,
|
|
1065
|
+
"character": "",
|
|
1066
|
+
"credit_id": "52587429760ee34661275e7f",
|
|
1067
|
+
"episode_count": 1,
|
|
1068
|
+
"first_air_date": "1999-01-01",
|
|
1069
|
+
"genre_ids": [
|
|
1070
|
+
99,
|
|
1071
|
+
],
|
|
1072
|
+
"id": 23726,
|
|
1073
|
+
"name": "The Directors",
|
|
1074
|
+
"origin_country": [
|
|
1075
|
+
"US",
|
|
1076
|
+
],
|
|
1077
|
+
"original_language": "en",
|
|
1078
|
+
"original_name": "The Directors",
|
|
1079
|
+
"overview": "Documentary biography series featuring profiles of various famous film directors.",
|
|
1080
|
+
"popularity": 5.665,
|
|
1081
|
+
"poster_path": "/tFbnlmwJsvvQU57nAJMnwoP6S7S.jpg",
|
|
1082
|
+
"vote_average": 7,
|
|
1083
|
+
"vote_count": 2,
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"backdrop_path": "/lV9jwkGJC5iIYnMwq645UZ56W2.jpg",
|
|
1087
|
+
"character": "",
|
|
1088
|
+
"credit_id": "525899cc760ee346615d9af8",
|
|
1089
|
+
"episode_count": 1,
|
|
1090
|
+
"first_air_date": "2009-09-14",
|
|
1091
|
+
"genre_ids": [],
|
|
1092
|
+
"id": 30769,
|
|
1093
|
+
"name": "Live from Studio Five",
|
|
1094
|
+
"origin_country": [
|
|
1095
|
+
"GB",
|
|
1096
|
+
],
|
|
1097
|
+
"original_language": "en",
|
|
1098
|
+
"original_name": "Live from Studio Five",
|
|
1099
|
+
"overview": "Live from Studio Five was an early-evening British magazine programme which was produced by Sky News for Channel 5. It was presented by Kate Walsh and a line-up of other co-presenters during its run. It consisted of interviews and discussing topical issues, with an emphasis on showbusiness news and celebrity gossip, after originally covering stories from a popular news agenda. It aired its final edition on 4 February 2011 and was replaced by OK! TV in February 2011 which lasted just nine months on air before itself being axed.",
|
|
1100
|
+
"popularity": 3.596,
|
|
1101
|
+
"poster_path": "/qvcklKVYE12ZUOniclBp1t2QsKP.jpg",
|
|
1102
|
+
"vote_average": 3.8,
|
|
1103
|
+
"vote_count": 9,
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"backdrop_path": "/6tIHF6spOHL5rQ5HoQ3EVyL5uag.jpg",
|
|
1107
|
+
"character": "Narrator",
|
|
1108
|
+
"credit_id": "53e444ab0e0a262b80005cb2",
|
|
1109
|
+
"episode_count": 1,
|
|
1110
|
+
"first_air_date": "1974-03-03",
|
|
1111
|
+
"genre_ids": [
|
|
1112
|
+
99,
|
|
1113
|
+
],
|
|
1114
|
+
"id": 3562,
|
|
1115
|
+
"name": "NOVA",
|
|
1116
|
+
"origin_country": [
|
|
1117
|
+
"US",
|
|
1118
|
+
],
|
|
1119
|
+
"original_language": "en",
|
|
1120
|
+
"original_name": "NOVA",
|
|
1121
|
+
"overview": "PBS' premier science series helps viewers of all ages explore the science behind the headlines. Along the way, NOVA demystifies science and technology, and highlights the people involved in scientific pursuits.",
|
|
1122
|
+
"popularity": 50.576,
|
|
1123
|
+
"poster_path": "/giUBXYnDAaJgNqA6iE3BMVE2EHp.jpg",
|
|
1124
|
+
"vote_average": 7.1,
|
|
1125
|
+
"vote_count": 74,
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"backdrop_path": null,
|
|
1129
|
+
"character": "Host",
|
|
1130
|
+
"credit_id": "552de18fc3a3686be2001934",
|
|
1131
|
+
"episode_count": 1,
|
|
1132
|
+
"first_air_date": "1981-10-05",
|
|
1133
|
+
"genre_ids": [],
|
|
1134
|
+
"id": 49093,
|
|
1135
|
+
"name": "Great Movie Stunts: Raiders of the Lost Ark",
|
|
1136
|
+
"origin_country": [],
|
|
1137
|
+
"original_language": "en",
|
|
1138
|
+
"original_name": "Great Movie Stunts: Raiders of the Lost Ark",
|
|
1139
|
+
"overview": "This is a neat little documentary, aired on television and released on video. It is hosted by a bearded Harrison Ford who does some of his own stunts in Raiders of the Lost Ark. Many of the stunts in the film are shown and discussed at length. Ford chats with other stuntmen on the set of Raiders of the Lost Ark, and one point boasts that he has to work harder then real stuntmen, because he has to stay in character during the stunts he performs. That aside, for most of the documentary Ford stays in awe of the stuntmen, as probably most viewers would be. The documentary is rather fascinating and features plenty of insight into the stunt world by not just the stuntmen, but Ford and even Steven Speilberg. This documentary also takes a look at the history of movie stunts and shows a few stunts dating back to the early days of motion pictures, and shows a few frightening stunt mishaps.",
|
|
1140
|
+
"popularity": 1.009,
|
|
1141
|
+
"poster_path": null,
|
|
1142
|
+
"vote_average": 8,
|
|
1143
|
+
"vote_count": 2,
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"backdrop_path": null,
|
|
1147
|
+
"character": "Self",
|
|
1148
|
+
"credit_id": "55ea182bc3a3682c76006cf5",
|
|
1149
|
+
"episode_count": 1,
|
|
1150
|
+
"first_air_date": "1981-02-14",
|
|
1151
|
+
"genre_ids": [
|
|
1152
|
+
18,
|
|
1153
|
+
10764,
|
|
1154
|
+
35,
|
|
1155
|
+
10767,
|
|
1156
|
+
],
|
|
1157
|
+
"id": 10918,
|
|
1158
|
+
"name": "Wanna bet, that..?",
|
|
1159
|
+
"origin_country": [
|
|
1160
|
+
"DE",
|
|
1161
|
+
"US",
|
|
1162
|
+
],
|
|
1163
|
+
"original_language": "de",
|
|
1164
|
+
"original_name": "Wetten, dass..?",
|
|
1165
|
+
"overview": "Wetten, dass..? was a long-running German-language entertainment television show. It is the most successful Saturday television show in Europe. Its format was the basis for the British show You Bet! and the American show Wanna Bet?.
|
|
1166
|
+
|
|
1167
|
+
The shows were broadcast live six to seven times a year from different cities in Germany, Austria, and Switzerland. There have also been seven open-air summer shows, broadcast from Amphitheatre Xanten, Plaça de Toros de Palma de Mallorca, Disneyland Paris, Waldbühne Berlin, and Aspendos Roman Theatre. Each of the shows, which were shown without commercial interruption, were usually scheduled to last for about two hours, but it was not uncommon for a show to run as much as 45 minutes longer.",
|
|
1168
|
+
"popularity": 17.027,
|
|
1169
|
+
"poster_path": "/4i8719B3j4z5U5EI1mjw3sOjBWe.jpg",
|
|
1170
|
+
"vote_average": 5.8,
|
|
1171
|
+
"vote_count": 11,
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"backdrop_path": "/2pJYis3LUEgFC3UErTQVgmUV1hN.jpg",
|
|
1175
|
+
"character": "Self",
|
|
1176
|
+
"credit_id": "59e0bdd3c3a36862000c0009",
|
|
1177
|
+
"episode_count": 2,
|
|
1178
|
+
"first_air_date": "2007-02-22",
|
|
1179
|
+
"genre_ids": [
|
|
1180
|
+
35,
|
|
1181
|
+
10767,
|
|
1182
|
+
],
|
|
1183
|
+
"id": 1220,
|
|
1184
|
+
"name": "The Graham Norton Show",
|
|
1185
|
+
"origin_country": [
|
|
1186
|
+
"GB",
|
|
1187
|
+
],
|
|
1188
|
+
"original_language": "en",
|
|
1189
|
+
"original_name": "The Graham Norton Show",
|
|
1190
|
+
"overview": "Each week celebrity guests join Irish comedian Graham Norton to discuss what's being going on around the world that week. The guests poke fun and share their opinions on the main news stories. Graham is often joined by a band or artist to play the show out.",
|
|
1191
|
+
"popularity": 67.436,
|
|
1192
|
+
"poster_path": "/vrbqaBXB8AALynQzpWz6JdCPEJS.jpg",
|
|
1193
|
+
"vote_average": 7.2,
|
|
1194
|
+
"vote_count": 175,
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"backdrop_path": "/9Ou0cGNLC8dcsvcKMUEi8OL5BSi.jpg",
|
|
1198
|
+
"character": "Roger Crane",
|
|
1199
|
+
"credit_id": "5c268008c3a3683a5cd0ae71",
|
|
1200
|
+
"episode_count": 1,
|
|
1201
|
+
"first_air_date": "1969-09-29",
|
|
1202
|
+
"genre_ids": [
|
|
1203
|
+
35,
|
|
1204
|
+
],
|
|
1205
|
+
"id": 1825,
|
|
1206
|
+
"name": "Love, American Style",
|
|
1207
|
+
"origin_country": [
|
|
1208
|
+
"US",
|
|
1209
|
+
],
|
|
1210
|
+
"original_language": "en",
|
|
1211
|
+
"original_name": "Love, American Style",
|
|
1212
|
+
"overview": "An anthology comedy series featuring a line up of different celebrity guest stars appearing in anywhere from one, two, three, and four short stories or vignettes within an hour about versions of love and romance.",
|
|
1213
|
+
"popularity": 19.401,
|
|
1214
|
+
"poster_path": "/aSL7chmSyz6aqTebDd8qxTFlwbW.jpg",
|
|
1215
|
+
"vote_average": 5.8,
|
|
1216
|
+
"vote_count": 12,
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"backdrop_path": null,
|
|
1220
|
+
"character": "Self",
|
|
1221
|
+
"credit_id": "5cd772999251417580cd624e",
|
|
1222
|
+
"episode_count": 1,
|
|
1223
|
+
"first_air_date": "1948-01-01",
|
|
1224
|
+
"genre_ids": [
|
|
1225
|
+
10764,
|
|
1226
|
+
],
|
|
1227
|
+
"id": 89293,
|
|
1228
|
+
"name": "Bambi Awards",
|
|
1229
|
+
"origin_country": [
|
|
1230
|
+
"DE",
|
|
1231
|
+
],
|
|
1232
|
+
"original_language": "de",
|
|
1233
|
+
"original_name": "Bambi-Verleihung",
|
|
1234
|
+
"overview": "The Bambi, often called the Bambi Award and stylised as BAMBI, is a German award presented annually by Hubert Burda Media to recognize excellence in international media and television to personalities in the media, arts, culture, sports, and other fields "with vision and creativity who affected and inspired the German public that year", both domestic and foreign. First held in 1948, it is the oldest media award in Germany. The trophy is named after Felix Salten's book Bambi, A Life in the Woods and its statuettes are in the shape of the novel's titular fawn character. They were originally made of porcelain until 1958, when the organizers switched to using gold, with the casting done by the art casting workshop of Ernst Strassacker in Süßen.",
|
|
1235
|
+
"popularity": 41.12,
|
|
1236
|
+
"poster_path": "/7Bc1fE5mKIYmhhgl0fVcw3nvDra.jpg",
|
|
1237
|
+
"vote_average": 0,
|
|
1238
|
+
"vote_count": 0,
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"backdrop_path": "/tSCRnfNAmfW5KrGBc4A1ro8edfa.jpg",
|
|
1242
|
+
"character": "The Ocean",
|
|
1243
|
+
"credit_id": "5d4c3d9321c4ca0018fcd258",
|
|
1244
|
+
"episode_count": 1,
|
|
1245
|
+
"first_air_date": "2015-08-12",
|
|
1246
|
+
"genre_ids": [
|
|
1247
|
+
99,
|
|
1248
|
+
],
|
|
1249
|
+
"id": 87269,
|
|
1250
|
+
"name": "Nature Is Speaking",
|
|
1251
|
+
"origin_country": [
|
|
1252
|
+
"US",
|
|
1253
|
+
],
|
|
1254
|
+
"original_language": "en",
|
|
1255
|
+
"original_name": "Nature Is Speaking",
|
|
1256
|
+
"overview": "Nature is given a voice to raise awareness that people need nature in order to survive.",
|
|
1257
|
+
"popularity": 1.93,
|
|
1258
|
+
"poster_path": "/7FuFsaIdPYXT5Q4qVMNwgZYxPYZ.jpg",
|
|
1259
|
+
"vote_average": 10,
|
|
1260
|
+
"vote_count": 1,
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"backdrop_path": "/rxyNUXXcQ9Fht5vy6Zc3HT0as8M.jpg",
|
|
1264
|
+
"character": "himself",
|
|
1265
|
+
"credit_id": "5eeff10ab0cd200034b801fb",
|
|
1266
|
+
"episode_count": 1,
|
|
1267
|
+
"first_air_date": "1987-10-01",
|
|
1268
|
+
"genre_ids": [
|
|
1269
|
+
10763,
|
|
1270
|
+
10767,
|
|
1271
|
+
],
|
|
1272
|
+
"id": 46044,
|
|
1273
|
+
"name": "Sat.1-Frühstücksfernsehen",
|
|
1274
|
+
"origin_country": [
|
|
1275
|
+
"DE",
|
|
1276
|
+
],
|
|
1277
|
+
"original_language": "de",
|
|
1278
|
+
"original_name": "Sat.1-Frühstücksfernsehen",
|
|
1279
|
+
"overview": "A German broadcast magazine, similar to a News channel, that has been running since 1987 and is on every Monday through Friday.",
|
|
1280
|
+
"popularity": 4.081,
|
|
1281
|
+
"poster_path": "/x6RTSU6dZaKWAgGudifB2z3BOMI.jpg",
|
|
1282
|
+
"vote_average": 0,
|
|
1283
|
+
"vote_count": 0,
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"backdrop_path": null,
|
|
1287
|
+
"character": "self",
|
|
1288
|
+
"credit_id": "5f93737084448e74cb99b99b",
|
|
1289
|
+
"episode_count": 1,
|
|
1290
|
+
"first_air_date": "1997-07-23",
|
|
1291
|
+
"genre_ids": [
|
|
1292
|
+
10763,
|
|
1293
|
+
],
|
|
1294
|
+
"id": 111979,
|
|
1295
|
+
"name": "Leute heute",
|
|
1296
|
+
"origin_country": [
|
|
1297
|
+
"DE",
|
|
1298
|
+
],
|
|
1299
|
+
"original_language": "de",
|
|
1300
|
+
"original_name": "Leute heute",
|
|
1301
|
+
"overview": "",
|
|
1302
|
+
"popularity": 5.177,
|
|
1303
|
+
"poster_path": null,
|
|
1304
|
+
"vote_average": 0,
|
|
1305
|
+
"vote_count": 0,
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"backdrop_path": "/2Ib8kvWa9gGhJrAfGlhIvbmtbWn.jpg",
|
|
1309
|
+
"character": "Self",
|
|
1310
|
+
"credit_id": "5fe786eb1ac292003dbe258c",
|
|
1311
|
+
"episode_count": 2,
|
|
1312
|
+
"first_air_date": "2010-11-08",
|
|
1313
|
+
"genre_ids": [
|
|
1314
|
+
10767,
|
|
1315
|
+
35,
|
|
1316
|
+
10763,
|
|
1317
|
+
],
|
|
1318
|
+
"id": 32415,
|
|
1319
|
+
"name": "Conan",
|
|
1320
|
+
"origin_country": [
|
|
1321
|
+
"US",
|
|
1322
|
+
],
|
|
1323
|
+
"original_language": "en",
|
|
1324
|
+
"original_name": "Conan",
|
|
1325
|
+
"overview": "A late night television talk show hosted by Conan O'Brien.",
|
|
1326
|
+
"popularity": 124.033,
|
|
1327
|
+
"poster_path": "/oQxrvUhP3ycwnlxIrIMQ9Z3kleq.jpg",
|
|
1328
|
+
"vote_average": 7.2,
|
|
1329
|
+
"vote_count": 149,
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"backdrop_path": "/g7LbxsatbTazDKnaFPDQz5fi2aH.jpg",
|
|
1333
|
+
"character": "Indiana Jones - age 50",
|
|
1334
|
+
"credit_id": "5fff8f577390c0003bf49e30",
|
|
1335
|
+
"episode_count": 1,
|
|
1336
|
+
"first_air_date": "1992-03-04",
|
|
1337
|
+
"genre_ids": [
|
|
1338
|
+
10759,
|
|
1339
|
+
18,
|
|
1340
|
+
],
|
|
1341
|
+
"id": 661,
|
|
1342
|
+
"name": "The Young Indiana Jones Chronicles",
|
|
1343
|
+
"origin_country": [
|
|
1344
|
+
"US",
|
|
1345
|
+
],
|
|
1346
|
+
"original_language": "en",
|
|
1347
|
+
"original_name": "The Young Indiana Jones Chronicles",
|
|
1348
|
+
"overview": "The Young Indiana Jones Chronicles is an American television series that aired on ABC from March 4, 1992, to July 24, 1993. Filming took place in various locations around Wilmington, North Carolina and on the campus of UNCW. The series was an Amblin Entertainment/Lucasfilm production in association with Paramount Network Television.
|
|
1349
|
+
|
|
1350
|
+
The series explores the childhood and youth of the fictional character Indiana Jones and primarily stars Sean Patrick Flanery and Corey Carrier as the title character, with George Hall playing an elderly version of Jones for the bookends of most episodes, though Harrison Ford bookended one episode. The show was created and executively produced by George Lucas, who also created, co-wrote and executively produced the Indiana Jones feature films.
|
|
1351
|
+
|
|
1352
|
+
Due to its enormous budget, the series was cancelled in 1993. However, following the series' cancellation, four made-for-television films were produced from 1994 to 1996 in an attempt to continue the series. In 1999, the series was re-edited into 22 television films under the title The Adventures of Young Indiana Jones.",
|
|
1353
|
+
"popularity": 21.177,
|
|
1354
|
+
"poster_path": "/a0LIkSfhqSNtWKOH4aTRGuEJB7C.jpg",
|
|
1355
|
+
"vote_average": 6.6,
|
|
1356
|
+
"vote_count": 71,
|
|
1357
|
+
},
|
|
1358
|
+
],
|
|
1359
|
+
"crew": [],
|
|
1360
|
+
}
|
|
1361
|
+
`;
|