curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/movies \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/tElnmtQ6yz1PjN1kePNl8yMSb59.jpg",
"genre_ids": [
16,
12,
10751,
35
],
"id": 1241982,
"original_language": "en",
"original_title": "Moana 2",
"overview": "After receiving an unexpected call from her wayfinding ancestors, Moana journeys alongside Maui and a new crew to the far seas of Oceania and into dangerous, long-lost waters for an adventure unlike anything she's ever faced.",
"popularity": 4485.032,
"poster_path": "/yh64qw9mgXBvlaWDi7Q9tpUBAvH.jpg",
"rating": 8,
"release_date": "2024-11-21",
"title": "Moana 2",
"video": false,
"vote_average": 6.831,
"vote_count": 425
}
],
"total_pages": 1,
"total_results": 1
}
This endpoint allows you to get a user’s list of 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": [
{
"adult": false,
"backdrop_path": "/tElnmtQ6yz1PjN1kePNl8yMSb59.jpg",
"genre_ids": [
16,
12,
10751,
35
],
"id": 1241982,
"original_language": "en",
"original_title": "Moana 2",
"overview": "After receiving an unexpected call from her wayfinding ancestors, Moana journeys alongside Maui and a new crew to the far seas of Oceania and into dangerous, long-lost waters for an adventure unlike anything she's ever faced.",
"popularity": 4485.032,
"poster_path": "/yh64qw9mgXBvlaWDi7Q9tpUBAvH.jpg",
"rating": 8,
"release_date": "2024-11-21",
"title": "Moana 2",
"video": false,
"vote_average": 6.831,
"vote_count": 425
}
],
"total_pages": 1,
"total_results": 1
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
language format of the details you want to get.
"en-US"
what page the query belongs
"1"
filter the query by ascending or descending order
"created_at.asc"
filter by the user session ID
"string"
Rated movies
The response is of type object
.