curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/account_states \
--header 'Authorization: Bearer <token>'
This endpoint allows you to get the rating, watchlist, and favorite status of an episode.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/account_states \
--header 'Authorization: Bearer <token>'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.