Skip to main content
POST
/
3
/
account
/
{account_id}
/
favorite
Add Favorite
curl --request POST \
  --url 'https://api.themoviedb.org/3/account/{{account_id}}/favorite' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "favorite": true,
  "media_id": 550,
  "media_type": "movie"
}
'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

Body

application/json
favorite
boolean
Example:

true

media_id
number
Example:

550

media_type
string
Example:

"movie"

Response

201 - application/json

Mark Favorite

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true