Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Account
Rated TV Episodes
This endpoint retrieves the list of TV episodes you have rated.
GET
/
3
/
account
/
{account_id}
/
rated
/
tv
/
episodes
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/tv/episodes \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"air_date": "2019-04-14",
"episode_number": 1,
"episode_type": "standard",
"id": 1551825,
"name": "Winterfell",
"overview": "Arriving at Winterfell, Jon and Daenerys struggle to unite a divided North. Jon Snow gets some big news.",
"production_code": "801",
"rating": 7,
"runtime": 55,
"season_number": 8,
"show_id": 1399,
"still_path": "/o65qwX1aHJclJ36VDhD3VYzz5em.jpg",
"vote_average": 7.171,
"vote_count": 248
},
{
"air_date": "2019-04-28",
"episode_number": 3,
"episode_type": "standard",
"id": 1551827,
"name": "The Long Night",
"overview": "The Night King and his army have arrived at Winterfell and the great battle begins. Arya looks to prove her worth as a fighter.",
"production_code": "803",
"rating": 8,
"runtime": 82,
"season_number": 8,
"show_id": 1399,
"still_path": "/mFtHbZenI5rRPqC5OFafoVmjEjq.jpg",
"vote_average": 6.903,
"vote_count": 288
}
],
"total_pages": 1,
"total_results": 2
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
This represents the TV show language.
Example:
"en"
This represents the page number.
Example:
"1"
This specifies the order in which the retrieved list will be displayed.
Example:
"created_at.asc"
Response
200 - application/json
Rated TV Episodes
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/tv/episodes \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"air_date": "2019-04-14",
"episode_number": 1,
"episode_type": "standard",
"id": 1551825,
"name": "Winterfell",
"overview": "Arriving at Winterfell, Jon and Daenerys struggle to unite a divided North. Jon Snow gets some big news.",
"production_code": "801",
"rating": 7,
"runtime": 55,
"season_number": 8,
"show_id": 1399,
"still_path": "/o65qwX1aHJclJ36VDhD3VYzz5em.jpg",
"vote_average": 7.171,
"vote_count": 248
},
{
"air_date": "2019-04-28",
"episode_number": 3,
"episode_type": "standard",
"id": 1551827,
"name": "The Long Night",
"overview": "The Night King and his army have arrived at Winterfell and the great battle begins. Arya looks to prove her worth as a fighter.",
"production_code": "803",
"rating": 8,
"runtime": 82,
"season_number": 8,
"show_id": 1399,
"still_path": "/mFtHbZenI5rRPqC5OFafoVmjEjq.jpg",
"vote_average": 6.903,
"vote_count": 288
}
],
"total_pages": 1,
"total_results": 2
}
Assistant
Responses are generated using AI and may contain mistakes.