GET
/
3
/
account
/
{account_id}
/
rated
/
movies
curl --request GET \
  --url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/movies \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [],
  "total_pages": 0,
  "total_results": 0
}

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

Response

200 - application/json

Rated Movies

The response is of type object.