Start
Creates or replaces the user’s active “watching now” session for the given item. Call this when playback begins, or to resume a previously paused session.
Body shape
Send progress plus exactly one of movie, show+episode, or anime+episode. See Standard media objects.
| Field | Type | Notes |
|---|---|---|
progress | float | 0–100, max 2 decimals. Response normalizes to 75 not 75.00. |
movie / show / anime | object | Title + year + ids. simkl ID alone is enough. |
episode | object | season + number, or ids. Required for shows/anime. |
Behavior
- Replaces any existing session for this item and clears prior pauses.
- Auto-expires after the calculated remaining runtime.
- If a previous start/checkin reached ≥ 80 % before this call, it is auto-scrobbled (marked watched) before the new session starts.
- Response shape:
id,action,progress, plus the media object withids(incl. external links Simkl knows about) and anepisodeblock. For anime, the response includes both AniDB-canonicalseason/numberand originaltvdb_season/tvdb_number.
Seek and scrub behavior
Don’t call /scrobble/start on a seek event. Only call it when playback actually begins or resumes (typically the player’s play event). When a user scrubs to a different position before pressing play, just update your local progress; the eventual play event fires the call with the new value.
Errors
| Code | When |
|---|---|
400empty_field | No movie, show, or anime in the body. |
400RATE_LIMIT | A 20-second per-user lock collision — another scrobble write for this user landed within the window. Note: HTTP 400, not 429 — the lock failure is treated as a malformed request from a duplicate-fire client. |
401user_token_failed | Missing / invalid bearer token. |
404id_err | Item could not be matched. |
Scrobble guide — full walkthrough
Real-time playback tracking — /start, /pause, /stop lifecycle, paused-playback resumption across devices, when scrobble auto-completes, and the difference between /scrobble/checkin (fire-and-forget) and /scrobble/start (active tracking).
Alternative to episode.season + episode.number: pass episode.ids with tvdb or anidb to identify the exact episode by external episode ID. Useful for Plex / media-server integrations that have a TVDB or AniDB episode ID but not the season/number mapping. (Episode-level imdb and tmdb IDs are not accepted — those exist only at the show/movie level. Use the show/anime object’s ids for those.) If both forms are sent, episode.ids takes precedence.
Authorizations
Preferred form: your client_id as a URL query parameter on every request. Self-describing in logs and curl commands. See Headers and required parameters.
OAuth 2.0 or PIN-flow access_token. Required for endpoints that read or modify the user's library, scrobble session, ratings, settings, or playbacks. See Authentication.
Headers
Descriptive identifier for your app, ideally name/version. Examples: PlexMediaServer/1.43.1.10540, kodi-simkl/0.9.2, MyApp/2.4.1 (https://myapp.com).
Query Parameters
Your client_id from your Simkl developer settings. Required on every request.
Short, lowercase identifier for your app (e.g. plex-scrobbler, kodi-bridge). Helps Simkl identify which apps are using the API.
Your app's current version (e.g. 1.0, 2.4.1). Helps Simkl debug issues you report.
Body
- Movie
- TV episode
- Anime episode
Request body for the four scrobble endpoints. Send exactly one of movie, show+episode, or anime+episode — all keys are singular objects (one item per request). For batch sync writes the keys are plural arrays: see /sync/history etc. progress is required for /scrobble/start, /scrobble/pause, and /scrobble/stop; on /scrobble/checkin it is optional and ignored server-side.
Anime under show? Yes — if you don't know whether a title is anime (e.g. you only have TMDB/TVDB data), send it under show and Simkl resolves it to the correct catalog automatically. The anime key is only needed when you want to pass anidb / mal / anilist IDs that don't exist at the TV-show level.
Movie reference. Use ids (any one external ID) and optionally title / year. Movies have no episode block.
Playback percentage 0-100. Up to 2 decimals. Required for /scrobble/start, /scrobble/pause, /scrobble/stop. Optional (and ignored) for /scrobble/checkin.
0 <= x <= 100TV show reference (must be paired with episode).
Anime reference. Pair with episode for series; an anime alone (no episode) is treated as an anime movie / OVA.
Episode identifier. Use season + number, OR ids with a tvdb / anidb episode ID. If both are sent, episode.ids takes precedence (matches Plex-style integrations that have an episode ID but no season/number mapping).
- By season + number
- By episode ID
Response
Created
Response for /scrobble/start, /scrobble/pause, and /scrobble/stop.
start for /start, pause for /pause and for /stop with progress<80, scrobble for /stop with progress≥80 (item marked watched).
start, pause, scrobble Echo of the request progress, normalized.
Internal session ID.
Standard movie object. See the Standard Media Objects guide.
Standard show object. May include nested seasons/episodes for partial sync.
Standard anime object. Like Show, but may include anime_type. Episode numbering follows AniDB.
Episode reference. Use season + number, or ids.
For anime: original TVDB season number when AniDB mapping differs.
For anime: original TVDB episode number when AniDB mapping differs.