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_id": 1156593,
  "media_type": "movie",
  "watchlist": true
}
'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Path Parameters

account_id
string
required

Body

application/json
media_id
number
Example:

1156593

media_type
string
Example:

"movie"

watchlist
boolean
Example:

true

Response

201 - application/json

Add to watchlist

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true