cURL
curl --request POST \ --url 'https://api.themoviedb.org/3/account/{{account_id}}/watchlist' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "media_id": 2288, "media_type": "tv", "watchlist": true } '
{ "status_code": 12, "status_message": "The item/record was updated successfully.", "success": true }
This endpoint allows you to add a movie or TV show to your watchlist.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents your account ID. Get it here
This represents your session ID. Get it here
This represents your media ID. Get it here
2288
This represents your media type. E.g, movie or tv.
"tv"
This specifies if the movie or tv show should be added to your watchlist.
true
Add To Watchlist
12
"The item/record was updated successfully."