cURL
curl --request POST \ --url https://api.themoviedb.org/3/account/{account_id}/favorite \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "media_type": "movie", "media_id": 550, "favorite": true } '
{ "status_code": 1, "status_message": "The item was updated successfully." }
Mark a movie or TV show as a favorite for a specific account on TMDB.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
12345678
movie
tv
"movie"
550
true
Successfully marked as favorite
1
"The item was updated successfully."