com.uwetrottmann.tmdb.services.MoviesService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tmdb-java Show documentation
Show all versions of tmdb-java Show documentation
tmdb-java is a Java library that provides access to the themoviedatabase API v3.
/*
* Copyright 2013 Uwe Trottmann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.uwetrottmann.tmdb.services;
import com.uwetrottmann.tmdb.entities.AppendToResponse;
import com.uwetrottmann.tmdb.entities.Credits;
import com.uwetrottmann.tmdb.entities.Images;
import com.uwetrottmann.tmdb.entities.ListResultsPage;
import com.uwetrottmann.tmdb.entities.Movie;
import com.uwetrottmann.tmdb.entities.MovieAlternativeTitles;
import com.uwetrottmann.tmdb.entities.MovieKeywords;
import com.uwetrottmann.tmdb.entities.MovieResultsPage;
import com.uwetrottmann.tmdb.entities.Releases;
import com.uwetrottmann.tmdb.entities.ReviewResultsPage;
import com.uwetrottmann.tmdb.entities.Videos;
import com.uwetrottmann.tmdb.entities.Translations;
import retrofit.http.GET;
import retrofit.http.Path;
import retrofit.http.Query;
public interface MoviesService {
/**
* Get the basic movie information for a specific movie id.
*
* @param tmdbId TMDb id.
* @param language Optional. ISO 639-1 code.
* @param appendToResponse Optional. extra requests to append to the result.
*/
@GET("/movie/{id}")
Movie summary(
@Path("id") int tmdbId,
@Query("language") String language,
@Query("append_to_response") AppendToResponse appendToResponse
);
/**
* Get the alternative titles for a specific movie id.
*
* @param tmdbId TMDb id.
* @param country Optional. ISO 3166-1 code.
*/
@GET("/movie/{id}/alternative_titles")
MovieAlternativeTitles alternativeTitles(
@Path("id") int tmdbId,
@Query("country") String country
);
/**
* Get the cast and crew information for a specific movie id.
*
* @param tmdbId TMDb id.
*/
@GET("/movie/{id}/credits")
Credits credits(
@Path("id") int tmdbId
);
/**
* Get the images (posters and backdrops) for a specific movie id.
*
* @param tmdbId TMDb id.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/{id}/images")
Images images(
@Path("id") int tmdbId,
@Query("language") String language
);
/**
* Get the plot keywords for a specific movie id.
*
* @param tmdbId TMDb id.
*/
@GET("/movie/{id}/keywords")
MovieKeywords keywords(
@Path("id") int tmdbId
);
/**
* Get the release date and certification information by country for a specific movie id.
*
* @param tmdbId TMDb id.
*/
@GET("/movie/{id}/releases")
Releases releases(
@Path("id") int tmdbId
);
/**
* Get the videos (trailers, teasers, clips, etc...) for a specific movie id.
*
* @param tmdbId TMDb id.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/{id}/videos")
Videos videos(
@Path("id") int tmdbId,
@Query("language") String language
);
/**
* Get the translations for a specific movie id.
*
* @param tmdbId TMDb id.
* @param appendToResponse Optional. extra requests to append to the result.
* @return
*/
@GET("/movie/{id}/translations")
Translations translations(
@Path("id") int tmdbId,
@Query("append_to_response") AppendToResponse appendToResponse
);
/**
* Get the similar movies for a specific movie id.
*
* @param tmdbId TMDb id.
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/{id}/similar")
MovieResultsPage similar(
@Path("id") int tmdbId,
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the reviews for a particular movie id.
*
* @param tmdbId TMDb id.
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/{id}/reviews")
ReviewResultsPage reviews(
@Path("id") int tmdbId,
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the lists that the movie belongs to.
*
* @param tmdbId TMDb id.
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/{id}/lists")
ListResultsPage lists(
@Path("id") int tmdbId,
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the latest movie id.
*/
@GET("/movie/latest")
Movie latest();
/**
* Get the list of upcoming movies. This list refreshes every day. The maximum number of items this list will
* include is 100.
*
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/upcoming")
MovieResultsPage upcoming(
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the list of movies playing in theaters. This list refreshes every day. The maximum number of items this list
* will include is 100.
*
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/now_playing")
MovieResultsPage nowPlaying(
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the list of popular movies on The Movie Database. This list refreshes every day.
*
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/popular")
MovieResultsPage popular(
@Query("page") Integer page,
@Query("language") String language
);
/**
* Get the list of top rated movies. By default, this list will only include movies that have 10 or more votes. This
* list refreshes every day.
*
* @param page Optional. Minimum value is 1, expected value is an integer.
* @param language Optional. ISO 639-1 code.
*/
@GET("/movie/top_rated")
MovieResultsPage topRated(
@Query("page") Integer page,
@Query("language") String language
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy