Skip to main content
POST
/
3
/
account
/
{account_id}
/
watchlist
Add To Watchlist
curl --request POST \
  --url https://api.themoviedb.org/3/account/{account_id}/watchlist \
  --header 'Content-Type: application/json' \
  --data '
{
  "media_type": "movie",
  "media_id": 550,
  "favorite": true
}
'
{
  "status_code": 7,
  "status_message": "Invalid API key: You must be granted a valid key.",
  "success": false
}

Path Parameters

account_id
integer<int32>
required
Example:

12345678

Body

application/json
media_type
enum<string>
Available options:
movie,
tv
Example:

"movie"

media_id
integer
Example:

550

favorite
boolean
Example:

true

Response