Adapter: SIMKL

SIMKL adapter lets CrossWatch sync with SIMKL. It supports watchlist, ratings, and history, including anime.

circle-info

Connect SIMKL first. Use: SIMKL (Authentication provider).

circle-exclamation

What it supports

  • Direction: source or target in a pair (one-way or two-way)

  • Features:

    • Watchlist → SIMKL PTW (“Plan To Watch”)

    • Ratings (1–10)

    • History (watched movies + watched episodes)

    • Playlists (not supported)

  • Delta sync: uses SIMKL activities and watermarks to avoid full downloads

  • IDs: works best with simkl, imdb, tmdb, tvdb

    • Anime can also use mal, anilist, kitsu, anidb when available

circle-exclamation

Watchlist behavior (PTW)

  • Read: incremental list reads per bucket (movies, shows, anime)

  • Write: add/remove items to PTW

circle-info

SIMKL writes mainly use movies/shows payloads. CrossWatch still reads the anime bucket for indexing.

Ratings behavior

  • Read: incremental ratings feed (movies/shows/anime)

  • Write: upsert and remove ratings

circle-info

Writing anime ratings depends on how the source provider represents anime.

History behavior

  • Read: incremental watched state for movies/shows/anime

  • Write: mark watched or unwatch

Anime writes can add use_tvdb_anime_seasons=true to help season mapping.

Settings (advanced)

chevron-rightHeaders sent to SIMKLhashtag
  • simkl-api-key: <client id>

  • Authorization: Bearer <access token>

  • User-Agent: CrossWatch/3.x (SIMKL) (override with CW_UA)

  • Accept: application/json

  • Content-Type: application/json

chevron-rightDelta syncing: date_from and watermarkshashtag

SIMKL uses per-feature watermarks stored under:

  • /config/.cw_state/simkl.watermarks.&lt;pair&gt;.json

For each feature, CrossWatch picks date_from in this order:

  1. Stored watermark

  2. SIMKL_<FEATURE>_DATE_FROM

  3. SIMKL_DATE_FROM

  4. simkl.date_from

  5. 1970-01-01T00:00:00Z

Watermarks only move forward.

chevron-rightHealth checkhashtag

SIMKL health is probed with:

  • POST /sync/activities

It also acts as an “activities gate” to skip work when nothing changed.

chevron-rightState files (per pair)hashtag

All state lives in /config/.cw_state/:

  • simkl.watermarks.<pair>.json

  • simkl.watchlist.shadow.<pair>.json

  • simkl.watchlist.unresolved.<pair>.json

  • simkl.ratings.shadow.<pair>.json

  • simkl_ratings.unresolved.<pair>.json

  • simkl.history.shadow.<pair>.json

  • simkl_history.unresolved.<pair>.json

  • simkl.show.map.<pair>.json

Deleting these forces rebuilds and usually increases API calls next run.

Last updated