Skip to main content
GET
/
guest_session
/
{guest_session_id}
/
rated
/
movies
Rated Movies
curl --request GET \
  --url https://api.themoviedb.org/3/guest_session/{guest_session_id}/rated/movies \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/ikR2qy9xJCHX7M8i5rcvuNfdYXs.jpg",
      "genre_ids": [
        18,
        80
      ],
      "id": 16,
      "original_language": "en",
      "original_title": "Dancer in the Dark",
      "overview": "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.",
      "popularity": 14.684,
      "poster_path": "/8Wdd3fQfbbQeoSfWpHrDfaFNhBU.jpg",
      "release_date": "2000-06-30",
      "title": "Dancer in the Dark",
      "video": false,
      "vote_average": 7.885,
      "vote_count": 1549,
      "rating": 8.5
    }
  ],
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Path Parameters

guest_session_id
string
required

The ID of the guest session to retrieve.

Query Parameters

language
string

Defaults to US

page
integer

Defaults to 1

sort_by
string

Defaults to created_at.asc

Response

200 - application/json

Successful

page
integer

Indicates the current page number

results
object[]

Contains the list of data or items

total_pages
integer

Specifies the total number of pages available

total_results
integer

Represents the total number of items or records in a dataset