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 you to add a movie or TV show to your watchlist.
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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User session ID created
"string"