ACCOUNT
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": 11, "media_type": "movie", "watchlist": true } '
{ "status_code": 1, "status_message": "Success.", "success": true }
This endpoint allows the user to add a movie or TV show to their watchlist.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
user's account id
session ID for authentication or tracking purposes
The unique identifier of the media item.
11
Set to true to add the media item to favorites.
true
The type of media to be added to favorites e.g movie or tv show
"movie"
Add to Watchlist
1
"Success."