GET
/
3
/
guest_session
/
{guest_session_id}
/
rated
/
movies
curl --request GET \
  --url https://api.themoviedb.org/3/guest_session/{guest_session_id}/rated/movies \
  --header 'Authorization: Bearer <token>'

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

A unique identifier for an authenticated guest user session. Usually used for guest user authentication

Example:

"0145215ad484b24c4b3f2ed0f5b77217"

Query Parameters

language
string

The language and region of the content, represented by an ISO 639-1 and ISO 3166-1 code combination (e.g, en-US for English, United States.). Defaults to en-US.

Example:

"en-US"

page
integer

A specific page number to get results for. Defaults to 1

Example:

1

sort_by
enum<string>

Used to determine the order in which results are sorted in the response (ascending or descending). Allowed values: * created_at.asc: Sort by date created in ascending order * created_at.desc: sort by date created in descending order Defaults to created_at.asc

Available options:
created_at.asc,
created_at.desc