Skip to content

Instantly share code, notes, and snippets.

@zurche
Created July 10, 2023 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zurche/7b5945cf68fbfe74b0bc2a22669b85a7 to your computer and use it in GitHub Desktop.
Save zurche/7b5945cf68fbfe74b0bc2a22669b85a7 to your computer and use it in GitHub Desktop.
Movies API
interface MoviesAPI {
@GET("movie/top_rated")
suspend fun getTopRatedMovies(
@Query("api_key") apiKey: String,
@Query("language") language: String = "en-US",
@Query("page") page: Int
): TMDBResponse<MovieResponse>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment