Skip to main content
POST
/
sync
/
ratings
/
remove
curl --request POST \ --url 'https://api.simkl.com/sync/ratings/remove?client_id=' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'User-Agent: <user-agent>' \ --data '{}'
{ "deleted": { "movies": 1, "shows": 0 }, "not_found": { "movies": [], "shows": [] } }

Documentation Index

Fetch the complete documentation index at: https://api.simkl.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

client_id
string
query
default:YOUR_CLIENT_ID
required

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.

Authorization
string
header
default:YOUR_ACCESS_TOKEN
required

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

User-Agent
string
required

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

client_id
string
required

Your client_id from your Simkl developer settings. Required on every request.

app-name
string
required

Short, lowercase identifier for your app (e.g. plex-scrobbler, kodi-bridge). Helps Simkl identify which apps are using the API.

app-version
string
required

Your app's current version (e.g. 1.0, 2.4.1). Helps Simkl debug issues you report.

Body

application/json

Request body for removing ratings. The rating field is not needed — identify items by ids (or title + year), and Simkl clears any rating set on them. To set or change a rating, use POST /sync/ratings instead. Items go under movies[], shows[], or anime[] — Simkl resolves anime titles correctly under either shows[] or anime[], so match the field to your data type when known.

movies
object[]
shows
object[]
anime
object[]

Array of anime entries (same shape as shows[]).

Response

Counts of items affected, plus any IDs Simkl could not match.

Counts of ratings cleared plus any IDs Simkl could not match.

deleted
object
required
not_found
object
required

Per-type lists of input items Simkl could not match. No anime key — anime is folded under shows.