AUTHENTICATION
cURL
curl --request GET \ --url https://api.themoviedb.org/3/authentication/guest_session/new \ --header 'Authorization: Bearer <token>'
{ "expires_at": "2024-12-27 13:40:52 UTC", "guest_session_id": "06c573143fb88ce7e8bf52a05a77109f", "success": true }
This endpoint create a new guest session.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
create guest session
The response is of type object.
object