Skip to content

Trakt UserList

Finds every movie/show in the Trakt UserList.

The sync_mode: sync and collection_order: custom Setting are recommended since the lists are continuously updated and in a specific order.

Trakt Configuration

Configuring Trakt in the config is required for any of these builders.

Attribute Description & Values
userlist Description: Which Trakt userlist to query
Values:
watchlistTrakt User's Watchlist
favoritesTrakt User's Personal Favorite list
watchedTrakt User's Personal Watched list
collectionTrakt User's Personal Collection list
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

Example Trakt UserList Builder(s)

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: collection
        user: me
    collection_order: custom
    sync_mode: sync