GET
/
3
/
tv
/
latest
Latest
curl --request GET \
  --url https://api.themoviedb.org/3/tv/latest \
  --header 'Authorization: Bearer <token>'
{
  "adult": false,
  "backdrop_path": "/499tm7ZzK2vHlGdVDaQa5v9qdwA.jpg",
  "created_by": [],
  "episode_run_time": [],
  "first_air_date": "2023-02-09",
  "genres": [],
  "homepage": "",
  "id": 280895,
  "in_production": true,
  "languages": [],
  "last_air_date": "2023-02-09",
  "last_episode_to_air": {
    "air_date": "2023-02-09",
    "episode_number": 1,
    "episode_type": "standard",
    "id": 5872696,
    "name": "Episode 1",
    "overview": "Episode Overview (English) - Required (minimum 10 characters)",
    "production_code": "",
    "runtime": null,
    "season_number": 1,
    "show_id": 280895,
    "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": [
    "US"
  ],
  "original_language": "en",
  "original_name": "სადალაქო",
  "overview": "Show Overview (English) - Required (minimum 10 characters)",
  "popularity": 0,
  "poster_path": "/8Aob0h1qC0GyvIqcKqshw9Yk9Ga.jpg",
  "production_companies": [],
  "production_countries": [],
  "seasons": [
    {
      "air_date": "2023-02-09",
      "episode_count": 1,
      "id": 435815,
      "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

Latest

adult
boolean
Example:

false

backdrop_path
string
Example:

"/499tm7ZzK2vHlGdVDaQa5v9qdwA.jpg"

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

"2023-02-09"

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

""

id
number
Example:

280895

in_production
boolean
Example:

true

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

"2023-02-09"

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:
["US"]
original_language
string
Example:

"en"

original_name
string
Example:

"სადალაქო"

overview
string
Example:

"Show Overview (English) - Required (minimum 10 characters)"

popularity
number
Example:

0

poster_path
string
Example:

"/8Aob0h1qC0GyvIqcKqshw9Yk9Ga.jpg"

production_companies
any[]
Example:
[]
production_countries
any[]
Example:
[]
seasons
object[]
Example:
[
{
"air_date": "2023-02-09",
"episode_count": 1,
"id": 435815,
"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