Skip to content

Simkl Trending

Finds movies, TV shows and anime from Simkl's trending lists.

The list is filtered automatically to match your library type (movies, shows, or both for playlists).

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

Playlist ordering for trending

The Simkl API returns trending data in separate sections (movies, TV, anime). When used in a playlist (mixed library), items appear grouped by type: all movies first, then all TV shows, then all anime. The internal per-section order is preserved, but movies and shows are not interleaved. If you need strict per-item interleaving, consider using text_file instead.

Attribute

Attribute Description Required Default
period Time period for the trending list. Options: today, week, month No today
limit Maximum number of items to return. Must be between 1 and 500. No 20

Note

The Simkl service provides lists of the top 100 items (small) or top 500 items (large). Kometa automatically selects the appropriate list size based on your limit value: small is used when limit is 100 or fewer, large when limit is greater than 100.

Simple usage with just a limit:

collections:
  Simkl Trending Today:
    simkl_trending: 20
    collection_order: custom
    sync_mode: sync

Using a specific period:

collections:
  Simkl Trending This Week:
    simkl_trending:
      period: week
      limit: 50
    collection_order: custom
    sync_mode: sync
collections:
  Simkl Trending This Month:
    simkl_trending:
      period: month
      limit: 100
    collection_order: custom
    sync_mode: sync