Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Account
Add To Watchlist
This endpoint allows you to add a movie or TV show to your watchlist.
POST
/
3
/
account
/
{account_id}
/
watchlist
curl --request POST \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/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
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
Add To Watchlist
The response is of type object
.
curl --request POST \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/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
}
Assistant
Responses are generated using AI and may contain mistakes.