GET
/
3
/
search
/
tv
curl --request GET \
  --url https://api.themoviedb.org/3/search/tv \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/2meX1nMdScFOoV4370rqHWKmXhY.jpg",
      "first_air_date": "2021-09-17",
      "genre_ids": [
        10759,
        9648,
        18
      ],
      "id": 93405,
      "name": "Squid Game",
      "origin_country": [
        "KR"
      ],
      "original_language": "ko",
      "original_name": "오징어 게임",
      "overview": "Hundreds of cash-strapped players accept a strange invitation to compete in children's games. Inside, a tempting prize awaits — with deadly high stakes.",
      "popularity": 1601.261,
      "poster_path": "/dDlEmu3EZ0Pgg93K2SVNLCjCSvE.jpg",
      "vote_average": 7.8,
      "vote_count": 14205
    }
  ],
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string

This represents the name of the Tv show you want to look for.

Example:

"Squid Game"

first_air_date_year
string

This represents the first air date year of the TV show.

Example:

"2021-09-17"

include_adult
string

This specifies if adult-rated shows should be included.

Example:

"false"

page
string

This represents the page number.

Example:

"1"

year
string

This represents the year the TV show was released.

Response

200 - application/json

TV

The response is of type object.