GET
/
3
/
tv
/
latest
Latest
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": "2012-09-29",
  "genres": [],
  "homepage": "",
  "id": 281816,
  "in_production": true,
  "languages": [],
  "last_air_date": "2012-09-29",
  "last_episode_to_air": {
    "air_date": "2013-03-23",
    "episode_number": 13,
    "episode_type": "standard",
    "id": 5895501,
    "name": "Willie Cook Jr & Deondra Dawson",
    "overview": "",
    "production_code": "",
    "runtime": null,
    "season_number": 1,
    "show_id": 281816,
    "still_path": null,
    "vote_average": 0,
    "vote_count": 0
  },
  "name": "Crime Stoppers Case Files: Chicago",
  "networks": [],
  "next_episode_to_air": null,
  "number_of_episodes": 1,
  "number_of_seasons": 1,
  "origin_country": [
    "US"
  ],
  "original_language": "en",
  "original_name": "Crime Stoppers Case Files: Chicago",
  "overview": "Case Files: Chicago profiles real, recent, and unsolved homicides around the city in an attempt to find the killers and decrease violent crime in Chicago. It airs at 11pm on The CW in the greater Chicagoland area every Saturday.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [],
  "production_countries": [],
  "seasons": [
    {
      "air_date": "2012-09-29",
      "episode_count": 13,
      "id": 437590,
      "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 Example

adult
boolean
Example:

false

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

"2012-09-29"

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

""

id
number
Example:

281816

in_production
boolean
Example:

true

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

"2012-09-29"

last_episode_to_air
object
name
string
Example:

"Crime Stoppers Case Files: Chicago"

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:

"Crime Stoppers Case Files: Chicago"

overview
string
Example:

"Case Files: Chicago profiles real, recent, and unsolved homicides around the city in an attempt to find the killers and decrease violent crime in Chicago. It airs at 11pm on The CW in the greater Chicagoland area every Saturday."

popularity
number
Example:

0

poster_path
any
production_companies
any[]
Example:
[]
production_countries
any[]
Example:
[]
seasons
object[]
Example:
[
{
"air_date": "2012-09-29",
"episode_count": 13,
"id": 437590,
"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