← 娱乐

电视节目详情

GET /tv/:id

按 TVMaze ID 获取特定电视节目的综合详情,包括完整演员表、剧集指南、类型、评分、播出网络、时间表、首播日期和剧情摘要。适用于在娱乐应用中构建节目详情页、演员浏览功能和剧集追踪功能。

参数

id 必填

Show ID

请求示例

基本用法
curl https://nordapi.ee/api/v1/tv/1
Under the Dome (show ID 1)
curl https://nordapi.ee/api/v1/tv/1
Game of Thrones (show ID 82)
curl https://nordapi.ee/api/v1/tv/82
The Office (show ID 526)
curl https://nordapi.ee/api/v1/tv/526

实时响应

{
  "data": {
    "cast": [
      {
        "character": "Dale \"Barbie\" Barbara",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/0/1815.jpg",
        "name": "Mike Vogel"
      },
      {
        "character": "Julia Shumway",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/82/207417.jpg",
        "name": "Rachelle Lefevre"
      },
      {
        "character": "Junior Rennie",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/205/513325.jpg",
        "name": "Alexander Koch"
      },
      {
        "character": "Joe McAlister",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/142/356748.jpg",
        "name": "Colin Ford"
      },
      {
        "character": "Norrie Calvert-Hill",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/3/7816.jpg",
        "name": "Mackenzie Lintz"
      },
      {
        "character": "James \"Big Jim\" Rennie",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/461/1154757.jpg",
        "name": "Dean Norris"
      },
      {
        "character": "Sam Verdreaux",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/0/1162.jpg",
        "name": "Eddie Cahill"
      },
      {
        "character": "Phil Bushey",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/0/2499.jpg",
        "name": "Nicholas Strong"
      },
      {
        "character": "Angie McAlister",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/158/396055.jpg",
        "name": "Britt Robertson"
      },
      {
        "character": "Carolyn Hill",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/574/1436040.jpg",
        "name": "Aisha Hinds"
      },
      {
        "character": "Deputy Linda Esquivel",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/282/706093.jpg",
        "name": "Natalie Martinez"
      },
      {
        "character": "Rebecca Pine",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/3/7817.jpg",
        "name": "Karla Crome"
      },
      {
        "character": "Eva Sinclair",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/3/8789.jpg",
        "name": "Kylie Bunbury"
      },
      {
        "character": "Dodee Weaver",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/616/1542498.jpg",
        "name": "Jolene Purdy"
      },
      {
        "character": "Sheriff Duke Perkins",
        "image": "https://static.tvmaze.com/uploads/images/medium_portrait/555/1389090.jpg",
        "name": "Jeff Fahey"
      }
    ],
    "ended": "2015-09-10",
    "genres": [
      "Drama",
      "Science-Fiction",
      "Thriller"
    ],
    "id": 1,
    "image": "https://static.tvmaze.com/uploads/images/original_untouched/610/1525272.jpg",
    "language": "English",
    "name": "Under the Dome",
    "network": "CBS",
    "premiered": "2013-06-24",
    "rating": 6.6,
    "seasons": 3,
    "status": "Ended",
    "summary": "Under the Dome is the story of a small town that is suddenly and inexplicably sealed off from the rest of the world by an enormous transparent dome. The town's inhabitants must deal with surviving the post-apocalyptic conditions while searching for answers about the dome, where it came from and if and when it will go away.",
    "total_episodes": 39,
    "type": "Scripted"
  },
  "success": true
}