cURL
curl --request GET \ --url https://api.themoviedb.org/3/authentication/guest_session/new \ --header 'Authorization: Bearer <token>'
{ "expires_at": "2025-01-03 12:44:38 UTC", "guest_session_id": "eccaf015f7c3e70b8d2024d3d3967baf", "success": true }
Guest sessions are a special kind of session that give you some of the functionality of an account, but not all.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Response
"2025-01-03 12:44:38 UTC"
"eccaf015f7c3e70b8d2024d3d3967baf"
true