GET
/
tv
/
latest
Fetch latest TV shows
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Fetch latest TV shows

adult
boolean
Example:

false

backdrop_path
any
created_by
any[]
Example:
[]
episode_run_time
any[]
Example:
[]
first_air_date
string
Example:

"2022-01-03"

genres
any[]
Example:
[]
homepage
string
Example:

""

id
number
Example:

280772

in_production
boolean
Example:

true

languages
any[]
Example:
[]
last_air_date
string
Example:

"2022-01-03"

last_episode_to_air
object
name
string
Example:

"芸能界オールスター草野球"

networks
any[]
Example:
[]
next_episode_to_air
any
number_of_episodes
number
Example:

1

number_of_seasons
number
Example:

1

origin_country
string[]
Example:
["JP"]
original_language
string
Example:

"ja"

original_name
string
Example:

"芸能界オールスター草野球"

overview
string
Example:

""

popularity
number
Example:

0

poster_path
any
production_companies
object[]
Example:
[
{
"id": 3034,
"logo_path": "/jnuO8pZNEBLEq5YaOP1f5OkmG91.png",
"name": "TV Tokyo",
"origin_country": "JP"
}
]
production_countries
object[]
Example:
[{ "iso_3166_1": "JP", "name": "Japan" }]
seasons
object[]
Example:
[
{
"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
any[]
Example:
[]
status
string
Example:

"Returning Series"

tagline
string
Example:

""

type
string
Example:

"Scripted"

vote_average
number
Example:

0

vote_count
number
Example:

0