- Overview
- Authentication
- Errors
- Images
- Advanced Ratings
- Scrobbling vs. Checkins
- Syncing with trakt
-
Account
-
Activity
-
Calendar
-
Comment
-
Genres
-
Lists
-
Movie
-
Movies
-
Network
-
Rate
-
Recommendations
-
Search
-
Server
-
Show
- show/cancelcheckin
- show/cancelwatching
- show/checkin
- show/comments
- show/episode/comments
- show/episode/library
- show/episode/seen
- show/episode/summary
- show/episode/unlibrary
- show/episode/unseen
- show/episode/unwatchlist
- show/episode/watchingnow
- show/episode/watchlist
- show/library
- show/related
- show/scrobble
- show/season
- show/season/library
- show/season/seen
- show/seasons
- show/seen
- show/summary
- show/unlibrary
- show/unwatchlist
- show/watching
- show/watchingnow
- show/watchlist
-
Shows
-
User
- user/calendar/shows
- user/lastactivity
- user/library/movies/all
- user/library/movies/collection
- user/library/movies/watched
- user/library/shows/all
- user/library/shows/collection
- user/library/shows/watched
- user/list
- user/lists
- user/network/followers
- user/network/following
- user/network/friends
- user/profile
- user/progress/collected
- user/progress/watched
- user/ratings/episodes
- user/ratings/movies
- user/ratings/shows
- user/watching
- user/watchlist/episodes
- user/watchlist/movies
- user/watchlist/shows
-
Deprecated
- friends/add
- friends/all
- friends/approve
- friends/delete
- friends/deny
- friends/requests
- movie/shouts
- shout/episode
- shout/movie
- shout/show
- show/episode/shouts
- show/shouts
- user/friends
- user/library/movies/hated
- user/library/movies/loved
- user/library/shows/hated
- user/library/shows/loved
- user/watched
- user/watched/episodes
- user/watched/movies
Summary
Get a list of movie recommendations created from your watching history and your friends. Results returned with the top recommendation first.
URL
http://api.trakt.tv/recommendations/movies/apikey
Supported formats
json
Supported request methods
POST
Requires authentication
true (details)
Required Parameters
-
apikey
Sign in to view your API key.
-
JSON POST
-
username
trakt username.
-
password
SHA1 hash of trakt password.
-
genre (optional)
Genre slug to filter by. See genres/movies for a list of valid genres.
-
start_year (optional)
4 digit year to filter movies released in this year or later.
-
end_year (optional)
4 digit year to filter movies released in this year or earlier.
-
hide_collected (optional)
Set to true to hide any movies the user has collected.
-
hide_watchlisted (optional)
Set to true to hide any movies on the user's watchlist.
-
Example JSON POST
{
"username": "username",
"password": "sha1hash",
"genre": "action",
"hide_collected": false,
"hide_watchlisted": true
}Example Response
[
{
"title":"The Expendables",
"year":2010,
"released":1283410800,
"url":"http://trakt.tv/movie/the-expendables-2010",
"trailer":"http://youtube.com/watch?v=qgSa2tghPaA",
"runtime":103,
"tagline":"Choose Your Weapon.",
"overview":"Barney Ross (Stallone) leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas (Statham), a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.",
"certification":"R",
"imdb_id":"tt1320253",
"tmdb_id":"27578",
"images":{
"poster":"http://trakt.us/images/posters_movies/304.jpg",
"fanart":"http://trakt.us/images/fanart_movies/304.jpg"
},
"ratings":{
"percentage":69,
"votes":36,
"loved":25,
"hated":11
},
"genres":["Action","Comedy"]
}
]



