Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url 'https://api.themoviedb.org/3/account/{{account_id}}/rated/movies' \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.themoviedb.org/3/account/{{account_id}}/rated/movies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/account/{{account_id}}/rated/movies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/account/{{account_id}}/rated/movies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/au3o84ub27qTZiMiEc9UYzN74V3.jpg",
"genre_ids": [
28,
878,
53
],
"id": 1035048,
"original_language": "en",
"original_title": "Elevation",
"overview": "A single father and two women venture from the safety of their homes to face monstrous creatures to save the life of a young boy.",
"popularity": 2204.744,
"poster_path": "/uQhYBxOVFU6s9agD49FnGHwJqG5.jpg",
"rating": 6,
"release_date": "2024-11-07",
"title": "Elevation",
"video": false,
"vote_average": 6.408,
"vote_count": 87
},
{
"adult": false,
"backdrop_path": "/ihPcIUUzJpLYGGNgjQ1g7ExjHLT.jpg",
"genre_ids": [],
"id": 1389586,
"original_language": "en",
"original_title": "Peace Of My Heart",
"overview": "PEACE OF MY HEART(NEW MOVIE): BRYAN OKWARA, JULIET NJEMANZE 2024 FULL NIGERIAN MOVIE",
"popularity": 0.695,
"poster_path": "/aDg2bT8zkr1JANcLbYYVgfVtj41.jpg",
"rating": 6,
"release_date": "2024-11-01",
"title": "Peace Of My Heart",
"video": false,
"vote_average": 6,
"vote_count": 1
}
],
"total_pages": 1,
"total_results": 2
}This endpoint retrieves a list of movies you have rated.
curl --request GET \
--url 'https://api.themoviedb.org/3/account/{{account_id}}/rated/movies' \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.themoviedb.org/3/account/{{account_id}}/rated/movies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/account/{{account_id}}/rated/movies"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/account/{{account_id}}/rated/movies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/account/{{account_id}}/rated/movies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/au3o84ub27qTZiMiEc9UYzN74V3.jpg",
"genre_ids": [
28,
878,
53
],
"id": 1035048,
"original_language": "en",
"original_title": "Elevation",
"overview": "A single father and two women venture from the safety of their homes to face monstrous creatures to save the life of a young boy.",
"popularity": 2204.744,
"poster_path": "/uQhYBxOVFU6s9agD49FnGHwJqG5.jpg",
"rating": 6,
"release_date": "2024-11-07",
"title": "Elevation",
"video": false,
"vote_average": 6.408,
"vote_count": 87
},
{
"adult": false,
"backdrop_path": "/ihPcIUUzJpLYGGNgjQ1g7ExjHLT.jpg",
"genre_ids": [],
"id": 1389586,
"original_language": "en",
"original_title": "Peace Of My Heart",
"overview": "PEACE OF MY HEART(NEW MOVIE): BRYAN OKWARA, JULIET NJEMANZE 2024 FULL NIGERIAN MOVIE",
"popularity": 0.695,
"poster_path": "/aDg2bT8zkr1JANcLbYYVgfVtj41.jpg",
"rating": 6,
"release_date": "2024-11-01",
"title": "Peace Of My Heart",
"video": false,
"vote_average": 6,
"vote_count": 1
}
],
"total_pages": 1,
"total_results": 2
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
This represents the movie language.
This represents the page number.
"1"
This represents your session Id.
This specifies the order in which the retrieved list will be displayed.
"created_at.asc"
Rated Movies
1
Show child attributes
[ { "adult": false, "backdrop_path": "/au3o84ub27qTZiMiEc9UYzN74V3.jpg", "genre_ids": [28, 878, 53], "id": 1035048, "original_language": "en", "original_title": "Elevation", "overview": "A single father and two women venture from the safety of their homes to face monstrous creatures to save the life of a young boy.", "popularity": 2204.744, "poster_path": "/uQhYBxOVFU6s9agD49FnGHwJqG5.jpg", "rating": 6, "release_date": "2024-11-07", "title": "Elevation", "video": false, "vote_average": 6.408, "vote_count": 87 }, { "adult": false, "backdrop_path": "/ihPcIUUzJpLYGGNgjQ1g7ExjHLT.jpg", "genre_ids": [], "id": 1389586, "original_language": "en", "original_title": "Peace Of My Heart", "overview": "PEACE OF MY HEART(NEW MOVIE): BRYAN OKWARA, JULIET NJEMANZE 2024 FULL NIGERIAN MOVIE", "popularity": 0.695, "poster_path": "/aDg2bT8zkr1JANcLbYYVgfVtj41.jpg", "rating": 6, "release_date": "2024-11-01", "title": "Peace Of My Heart", "video": false, "vote_average": 6, "vote_count": 1 } ]
1
2