Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Guest Sessions
Guest SessionId
This endpoint allows you to create a guest session Id.
Check this section for more information about guest session.
GET
/
3
/
authentication
/
guest_session
/
new
curl --request GET \
--url https://api.themoviedb.org/3/authentication/guest_session/new \
--header 'Authorization: Bearer <token>'
{
"expires_at": "2024-12-18 23:05:48 UTC",
"guest_session_id": "7fb2bac1c0b5fac7d131dbb2c667e5f0",
"success": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Guest SessionId
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/authentication/guest_session/new \
--header 'Authorization: Bearer <token>'
{
"expires_at": "2024-12-18 23:05:48 UTC",
"guest_session_id": "7fb2bac1c0b5fac7d131dbb2c667e5f0",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.