curl --request GET \
--url https://api.themoviedb.org/3/tv/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"created_by": [],
"episode_run_time": [],
"first_air_date": "2022-01-03",
"genres": [],
"homepage": "",
"id": 280772,
"in_production": true,
"languages": [],
"last_air_date": "2022-01-03",
"last_episode_to_air": {
"air_date": "2022-01-03",
"episode_number": 1,
"episode_type": "standard",
"id": 5870005,
"name": "Episode 1",
"overview": "",
"production_code": "",
"runtime": null,
"season_number": 1,
"show_id": 280772,
"still_path": null,
"vote_average": 0,
"vote_count": 0
},
"name": "芸能界オールスター草野球",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 1,
"number_of_seasons": 1,
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "芸能界オールスター草野球",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [
{
"id": 3034,
"logo_path": "/jnuO8pZNEBLEq5YaOP1f5OkmG91.png",
"name": "TV Tokyo",
"origin_country": "JP"
}
],
"production_countries": [
{
"iso_3166_1": "JP",
"name": "Japan"
}
],
"seasons": [
{
"air_date": "2022-01-03",
"episode_count": 1,
"id": 435609,
"name": "Season 1",
"overview": "",
"poster_path": null,
"season_number": 1,
"vote_average": 0
}
],
"spoken_languages": [],
"status": "Returning Series",
"tagline": "",
"type": "Scripted",
"vote_average": 0,
"vote_count": 0
}
This endpoint allows you to get the newest TV show ID.
curl --request GET \
--url https://api.themoviedb.org/3/tv/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"created_by": [],
"episode_run_time": [],
"first_air_date": "2022-01-03",
"genres": [],
"homepage": "",
"id": 280772,
"in_production": true,
"languages": [],
"last_air_date": "2022-01-03",
"last_episode_to_air": {
"air_date": "2022-01-03",
"episode_number": 1,
"episode_type": "standard",
"id": 5870005,
"name": "Episode 1",
"overview": "",
"production_code": "",
"runtime": null,
"season_number": 1,
"show_id": 280772,
"still_path": null,
"vote_average": 0,
"vote_count": 0
},
"name": "芸能界オールスター草野球",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 1,
"number_of_seasons": 1,
"origin_country": [
"JP"
],
"original_language": "ja",
"original_name": "芸能界オールスター草野球",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [
{
"id": 3034,
"logo_path": "/jnuO8pZNEBLEq5YaOP1f5OkmG91.png",
"name": "TV Tokyo",
"origin_country": "JP"
}
],
"production_countries": [
{
"iso_3166_1": "JP",
"name": "Japan"
}
],
"seasons": [
{
"air_date": "2022-01-03",
"episode_count": 1,
"id": 435609,
"name": "Season 1",
"overview": "",
"poster_path": null,
"season_number": 1,
"vote_average": 0
}
],
"spoken_languages": [],
"status": "Returning Series",
"tagline": "",
"type": "Scripted",
"vote_average": 0,
"vote_count": 0
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch latest TV shows
The response is of type object
.