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
TV Series
Latest
This endpoint retrieves a list of the latest TV shows and their Ids.
GET
/
3
/
tv
/
latest
curl --request GET \
--url https://api.themoviedb.org/3/tv/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": "/tla8WvBklZ3HWhz3JJT6nsdRstg.jpg",
"created_by": [],
"episode_run_time": [],
"first_air_date": "2015-07-17",
"genres": [],
"homepage": "",
"id": 280745,
"in_production": true,
"languages": [],
"last_air_date": "2015-07-17",
"last_episode_to_air": {
"air_date": "2015-11-13",
"episode_number": 18,
"episode_type": "standard",
"id": 5869280,
"name": "Episode 18",
"overview": "",
"production_code": "",
"runtime": null,
"season_number": 1,
"show_id": 280745,
"still_path": null,
"vote_average": 0,
"vote_count": 0
},
"name": "بوليس حالة عادية",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 1,
"number_of_seasons": 3,
"origin_country": [
"FR"
],
"original_language": "fr",
"original_name": "بوليس حالة عادية",
"overview": "",
"popularity": 0,
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"production_companies": [],
"production_countries": [],
"seasons": [
{
"air_date": "2015-07-17",
"episode_count": 18,
"id": 435540,
"name": "Season 1",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 1,
"vote_average": 0
},
{
"air_date": null,
"episode_count": 28,
"id": 435541,
"name": "Season 2",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 2,
"vote_average": 0
},
{
"air_date": null,
"episode_count": 20,
"id": 435542,
"name": "Season 3",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 3,
"vote_average": 0
}
],
"spoken_languages": [],
"status": "Returning Series",
"tagline": "",
"type": "Scripted",
"vote_average": 8,
"vote_count": 1
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Latest
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/tv/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": "/tla8WvBklZ3HWhz3JJT6nsdRstg.jpg",
"created_by": [],
"episode_run_time": [],
"first_air_date": "2015-07-17",
"genres": [],
"homepage": "",
"id": 280745,
"in_production": true,
"languages": [],
"last_air_date": "2015-07-17",
"last_episode_to_air": {
"air_date": "2015-11-13",
"episode_number": 18,
"episode_type": "standard",
"id": 5869280,
"name": "Episode 18",
"overview": "",
"production_code": "",
"runtime": null,
"season_number": 1,
"show_id": 280745,
"still_path": null,
"vote_average": 0,
"vote_count": 0
},
"name": "بوليس حالة عادية",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 1,
"number_of_seasons": 3,
"origin_country": [
"FR"
],
"original_language": "fr",
"original_name": "بوليس حالة عادية",
"overview": "",
"popularity": 0,
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"production_companies": [],
"production_countries": [],
"seasons": [
{
"air_date": "2015-07-17",
"episode_count": 18,
"id": 435540,
"name": "Season 1",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 1,
"vote_average": 0
},
{
"air_date": null,
"episode_count": 28,
"id": 435541,
"name": "Season 2",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 2,
"vote_average": 0
},
{
"air_date": null,
"episode_count": 20,
"id": 435542,
"name": "Season 3",
"overview": "",
"poster_path": "/lsGJKX95A99NnjO60vdONmOgg2.jpg",
"season_number": 3,
"vote_average": 0
}
],
"spoken_languages": [],
"status": "Returning Series",
"tagline": "",
"type": "Scripted",
"vote_average": 8,
"vote_count": 1
}
Assistant
Responses are generated using AI and may contain mistakes.