Get Started
Endpoints
- Authentication
- Accounts
- Guest sessions
- Movies
- TV episodes
- TV seasons
- TV series
- GETGet series detaills
- GETAccount states
- GETGet aggregate credits
- GETGet alternative titles
- GETGet recent changes
- GETGet content ratings
- GETGet credits
- GETGet episode groups
- GETGet external IDs
- GETGet series images
- GETGet series keywords
- GETGet latest series
- GETGet series' list
- GETGet recommended series
- GETGet series' reviews
- GETGet theatre episodes
- GETGet similar TV series
- GETGet series translations
- GETGet series' videos
- GETGet watch providers
- GET
- TV series lists
- TV episode groups
- Watch providers
- People
- Companies
- Discover
- Recent changes
- Credit
- Certifications
- Collections
- Configuration
- Find
- Genres
- Keywords
- Movie lists
- Networks
- Reviews
- Search
- Trending
TV series
Get series detaills
Get the details of a TV show.
GET
/
3
/
tv
/
1399
curl --request GET \
--url https://api.themoviedb.org/3/tv/1399 \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"created_by": [],
"episode_run_time": [],
"first_air_date": "",
"genres": [],
"homepage": "",
"id": 9813,
"in_production": false,
"languages": [],
"last_air_date": null,
"last_episode_to_air": null,
"name": "D-TV",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 0,
"number_of_seasons": 0,
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "D-TV",
"overview": "D-TV was a series of music videos created by Walt Disney Productions in 1984 taking old hit songs of the past and putting them together with lots of footage of vintage Disney animation, created out of the trend of music videos on cable channel MTV, which inspired the name of this series. The videos were shown as filler material on the Disney Channel, as well as being the focus of televisions specials. Home video collections were also released on the VHS, Beta, CED Videodisc, and Laserdisc formats. After the first run of D-TV, in 1989 a second series was produced known as DTV².\n\nD-TV ceased airing in 1999. A small selection of the music videos can currently be viewed on YouTube.\n\nAs of 2009, Disney seems to be reviving the D-TV idea in the form of Re-Micks, similar music videos syncing clips from the classic shorts to pop songs.",
"popularity": 0.001,
"poster_path": "/6MHHHtHp60Bk3MlrWfvyjpQlQAB.jpg",
"production_companies": [],
"production_countries": [],
"seasons": [],
"spoken_languages": [],
"status": "Ended",
"tagline": "",
"type": "Scripted",
"vote_average": 0,
"vote_count": 0
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
New Request
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/tv/1399 \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"created_by": [],
"episode_run_time": [],
"first_air_date": "",
"genres": [],
"homepage": "",
"id": 9813,
"in_production": false,
"languages": [],
"last_air_date": null,
"last_episode_to_air": null,
"name": "D-TV",
"networks": [],
"next_episode_to_air": null,
"number_of_episodes": 0,
"number_of_seasons": 0,
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "D-TV",
"overview": "D-TV was a series of music videos created by Walt Disney Productions in 1984 taking old hit songs of the past and putting them together with lots of footage of vintage Disney animation, created out of the trend of music videos on cable channel MTV, which inspired the name of this series. The videos were shown as filler material on the Disney Channel, as well as being the focus of televisions specials. Home video collections were also released on the VHS, Beta, CED Videodisc, and Laserdisc formats. After the first run of D-TV, in 1989 a second series was produced known as DTV².\n\nD-TV ceased airing in 1999. A small selection of the music videos can currently be viewed on YouTube.\n\nAs of 2009, Disney seems to be reviving the D-TV idea in the form of Re-Micks, similar music videos syncing clips from the classic shorts to pop songs.",
"popularity": 0.001,
"poster_path": "/6MHHHtHp60Bk3MlrWfvyjpQlQAB.jpg",
"production_companies": [],
"production_countries": [],
"seasons": [],
"spoken_languages": [],
"status": "Ended",
"tagline": "",
"type": "Scripted",
"vote_average": 0,
"vote_count": 0
}
Assistant
Responses are generated using AI and may contain mistakes.