Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.themoviedb.org/3/authentication/guest_session/new \
--header 'Authorization: Bearer <token>'{
"expires_at": "2024-12-18 15:02:22 UTC",
"guest_session_id": "602bf403df31f387ea578679ee56dd1a",
"success": true
}This endpoint allows you to create a new session for a guest user.
curl --request GET \
--url https://api.themoviedb.org/3/authentication/guest_session/new \
--header 'Authorization: Bearer <token>'{
"expires_at": "2024-12-18 15:02:22 UTC",
"guest_session_id": "602bf403df31f387ea578679ee56dd1a",
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.