- 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
Returns all shows a user has loved. Protected users won't return any data unless you are friends.
URL
http://api.trakt.tv/user/library/shows/loved.format/apikey/username
Supported formats
json
Supported request methods
GET
Requires authentication
optional (details)
If this user has a protected profile, valid auth will allow data to be returned for yourself and any friends.
Required Parameters
-
apikey
Sign in to view your API key.
-
username
You can get a username by browsing the website and looking at the URL when on a profile page.
-
extended (optional)
Returns complete show info if set to true. Only send this if you really need the full dump as it doubles the data size being sent back. Returns only the minimal info (title, year, imdb_id, tvdb_id, tvrage_id) required for media center syncing if set to min. This sends about half the data.
Example Request
http://api.trakt.tv/user/library/shows/loved.json/apikey/justin
[
{
"title":"10 Items Or Less",
"year":2006,
"url":"http://trakt.tv/show/10-items-or-less",
"imdb_id":"tt0826254",
"tvdb_id":79599,
"tvrage_id":1234,
"images":{
"poster":"http://trakt.us/images/posters/21.jpg",
"fanart":"http://trakt.us/images/fanart/21.jpg",
"banner":"http://trakt.us/images/banners/21.jpg"
},
"genres":["Action","Comedy"]
}
]



