curl --request GET \
--url https://api.themoviedb.org/3/authentication \
--header 'Authorization: Bearer <token>'
This endpoint allows you to test if your API key is valid.
curl --request GET \
--url https://api.themoviedb.org/3/authentication \
--header 'Authorization: Bearer <token>'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.