17 KiB
Trakt Builders
You can find items using the features of Trakt.tv (Trakt).
Configuring Trakt in the config is required for any of these builders.
Attribute | Description | Works with Movies | Works with Shows | Works with Playlists and Custom Sort |
---|---|---|---|---|
trakt_list |
Finds every movie/show in the Trakt List | ✅ | ✅ | ✅ |
trakt_list_details |
Finds every movie/show in the Trakt List and updates the collection summary with the list description | ✅ | ✅ | ✅ |
trakt_chart |
Finds the movies/shows in the Trakt Chart | ✅ | ✅ | ✅ |
trakt_userlist |
Finds every movie/show in the Trakt Userlist | ✅ | ✅ | ✅ |
trakt_recommendations |
Finds the movies/shows in Trakt's Personal Recommendations for your User Movies/Shows | ✅ | ✅ | ✅ |
trakt_boxoffice |
Finds the 10 movies in Trakt's Top Box Office Movies list | ✅ | ❌ | ✅ |
Trakt List
Finds every item in the Trakt List.
The expected input is a Trakt List URL. Multiple values are supported only as a list.
The sync_mode: sync
and collection_order: custom
Details are recommended since the lists are continuously updated and in a specific order.
Trakt Lists cannot be sorted through the API, but the list is always returned to the default list order if you own the list.
collections:
Christmas:
trakt_list:
- https://trakt.tv/users/movistapp/lists/christmas-movies
- https://trakt.tv/users/2borno2b/lists/christmas-movies-extravanganza
sync_mode: sync
collections:
Reddit Top 250:
trakt_list: https://trakt.tv/users/jay-greene/lists/reddit-top-250-2019-edition
collection_order: custom
sync_mode: sync
- You can update the collection details with the Trakt List's description by using
trakt_list_details
. - You can specify multiple collections in
trakt_list_details
but it will only use the first one to update the collection summary.
collections:
Reddit Top 250:
trakt_list_details: https://trakt.tv/users/jay-greene/lists/reddit-top-250-2019-edition
collection_order: custom
sync_mode: sync
Trakt Chart
Finds the movies/shows in the Trakt Chart. The options are detailed below.
The sync_mode: sync
and collection_order: custom
Details are recommended since the lists are continuously updated and in a specific order.
Attribute | Description & Values | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
chart |
Description: Which Trakt chart to query Values:
|
||||||||||
time_period |
Description: Time Period for the chart. Does not work with trending or popular chart types.Default: weekly Values: daily , weekly , monthly , yearly , or all |
||||||||||
limit |
Description: Don't return more then this number Default: 10 Values: Number of Items to query. |
These are the links to the trakt charts that is looked at by time period.
Period | Collected | Recommended | Watched |
---|---|---|---|
Daily | Movies/Shows | Movies/Shows | Movies/Shows |
Weekly | Movies/Shows | Movies/Shows | Movies/Shows |
Monthly | Movies/Shows | Movies/Shows | Movies/Shows |
Yearly | Movies/Shows | Movies/Shows | Movies/Shows |
All-Time | Movies/Shows | Movies/Shows | Movies/Shows |
collections:
Trakt Trending:
trakt_chart:
chart: trending
limit: 30
collection_order: custom
sync_mode: sync
You can use multiple charts in one builder using a list.
collections:
Trakt Trending & Popular:
trakt_chart:
- chart: trending
limit: 30
- chart: popular
limit: 30
collection_order: custom
sync_mode: sync
Trakt Userlist
Finds every movie/show in the Trakt Userlist.
The sync_mode: sync
and collection_order: custom
Details are recommended since the lists are continuously updated and in a specific order.
Attribute | Description & Values | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
userlist |
Description: Which Trakt userlist to query Values:
|
||||||||||
user |
Description: The User who's user lists you want to query. Default: me Values: Username of User or me for the authenticated user. |
||||||||||
sort_by |
Description: How to sort the results Default: rank Values: rank , added , released , title |
collections:
Trakt Watchlist:
trakt_userlist:
userlist: watchlist
user: me
sort_by: released
collection_order: custom
sync_mode: sync
You can use multiple charts in one builder using a list.
collections:
Trakt Watchlist:
trakt_userlist:
- userlist: watched
user: me
- userlist: collected
user: me
collection_order: custom
sync_mode: sync
Trakt Recommendations
Finds the movies/shows in Trakt's Recommendations for Movies/Shows
The expected input is a single integer value of how many movies/shows to query.
The sync_mode: sync
and collection_order: custom
Details are recommended since the lists are continuously updated and in a specific order.
collections:
Trakt Recommendations:
trakt_recommendations: 30
collection_order: custom
sync_mode: sync
Trakt Box Office
Finds the 10 movies in Trakt's Top Box Office Movies list.
The expected input is true.
The sync_mode: sync
and collection_order: custom
Details are recommended since the lists are continuously updated and in a specific order.
collections:
Trakt Collected:
trakt_boxoffice: true
collection_order: custom
sync_mode: sync