Airing Today
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg",
"first_air_date": "2020-11-02",
"genre_ids": [
10766,
18
],
"id": 112470,
"name": "Ici tout commence",
"origin_country": [
"FR"
],
"original_language": "fr",
"original_name": "Ici tout commence",
"overview": "This television drama series is centered around the prestigious culinary school of renowned chef Auguste Armand. The show follows the lives of students and staff as they navigate the challenges and pressures of the culinary world—delving into their personal and professional lives, revealing secrets, rivalries, and complex relationships.",
"popularity": 3275.088,
"poster_path": "/v7nXPo2zdaIOfeIaERiOuTEt89N.jpg",
"vote_average": 6.9,
"vote_count": 84
},
{
"adult": false,
"backdrop_path": "/zSPvARNCFpZxmWjgJCsBu5PUlR9.jpg",
"first_air_date": "2024-10-21",
"genre_ids": [
35,
18,
10751,
10762,
10759
],
"id": 247885,
"name": "Papás por Conveniencia",
"origin_country": [
"MX",
"US"
],
"original_language": "en",
"original_name": "Papás por Conveniencia",
"overview": "Tino, a single father who faces great challenges in raising his two children, finds out one day that he is also the father of two rebellious teenagers, children of Aidé, a former high school classmate who has become an important businesswoman. For Tino, this news becomes an opportunity to take on the role of father of the children he never knew he had. Thus, he begins to work at Aidé's company, but everything gets complicated when Tino and his family move into Aidé's house to integrate into her new life. The house becomes a battlefield, both of their children have problems adapting, and love resurfaces between Tino and Aidé and a torrid romance begins. But building this new life for Aidé, Tino and their children will not be easy; they will have to face serious obstacles, always supported by the strength of their love and that of their children.",
"popularity": 3231.311,
"poster_path": "/y7yIu9PKx2WTphhYgbBq9C1RNzV.jpg",
"vote_average": 7.9,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/4i3iJepkqqH5JJgTNLJdi8ke6ir.jpg",
"first_air_date": "2024-05-06",
"genre_ids": [
10766
],
"id": 249010,
"name": "Kelders van Geheime",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Kelders van Geheime",
"overview": "Kelders van Geheime (Cellars of Secrets) is a South African, Afrikaans-language telenovela based on the wheeling's and dealings of the community that lives on Soebatskloof (a wine farm in the Cape). The series focuses on three families: the Abrahams, Syster and Marais households. These families will have to stand together, agree (or agree to disagree), and work together to earn their bread and butter – and a glass of wine.",
"popularity": 3060.98,
"poster_path": "/vf1I0G5jICTstI1EXxb9Oqq80TU.jpg",
"vote_average": 6.2,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/mLcD1v4sfoa1juOsBat7Vik7wEe.jpg",
"first_air_date": "2024-03-18",
"genre_ids": [
10764
],
"id": 248890,
"name": "Ready Steady Cook South Africa",
"origin_country": [
"ZA"
],
"original_language": "en",
"original_name": "Ready Steady Cook South Africa",
"overview": "In Ready Steady Cook, two teams - a Red Tomato and a Green Pepper - compete in a Red Kitchen and a Green Kitchen, together with a South African chef on each side and paired with enthusiastic home cooks, as they are challenged creatively with a mystery bag of ingredients in a 20-minute cook-off.",
"popularity": 3050.82,
"poster_path": "/30xX4IMbgnMbQwo76xM4BOSokZO.jpg",
"vote_average": 2.9,
"vote_count": 7
},
{
"adult": false,
"backdrop_path": "/lmvsFQpAhx4k9dqKvOgb2B63MsC.jpg",
"first_air_date": "2012-01-30",
"genre_ids": [
10763,
10767
],
"id": 113779,
"name": "Hallo Hessen",
"origin_country": [
"DE"
],
"original_language": "de",
"original_name": "Hallo Hessen",
"overview": "",
"popularity": 3037.128,
"poster_path": "/zRGme9GL0H5RmwzxKYzoXafcRDp.jpg",
"vote_average": 7.1,
"vote_count": 4
},
{
"adult": false,
"backdrop_path": "/2wNuLc0cEoPz6PZItftrZLHjG2k.jpg",
"first_air_date": "2024-10-27",
"genre_ids": [
18,
10751
],
"id": 251691,
"name": "Autumn of the Heart",
"origin_country": [
"SA"
],
"original_language": "ar",
"original_name": "خريف القلب",
"overview": "A devastating car accident unearths a long-buried secret that turns wealthy businessman Rashid and hardworking Nahla's life around; fifteen years ago, their daughters were switched at birth.",
"popularity": 2800.981,
"poster_path": "/8uDmIxjBx90y5OCwJDBADtQzxb7.jpg",
"vote_average": 5.7,
"vote_count": 3
},
{
"adult": false,
"backdrop_path": "/4ErOWmDGyGk0qCK1J8blAoj1a7a.jpg",
"first_air_date": "2024-06-18",
"genre_ids": [
18
],
"id": 252373,
"name": "A Promessa",
"origin_country": [
"PT"
],
"original_language": "pt",
"original_name": "A Promessa",
"overview": "",
"popularity": 2633.313,
"poster_path": "/uptgxt2apx5wwWItQzqL0HwhjZC.jpg",
"vote_average": 6.2,
"vote_count": 12
},
{
"adult": false,
"backdrop_path": "/wAZREM1qfwHFdXISMpjscwBXuUf.jpg",
"first_air_date": "2000-05-04",
"genre_ids": [
10767
],
"id": 112261,
"name": "Abendschau",
"origin_country": [
"DE"
],
"original_language": "de",
"original_name": "Abendschau",
"overview": "The Berliner Abendschau is the news magazine for Berlin.",
"popularity": 2508.867,
"poster_path": "/A9j8yRrHPcVPVpoYt754t0BrtdB.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/n5hwt6FCkqgWFui8Dx7SZwY8XhL.jpg",
"first_air_date": "2024-11-30",
"genre_ids": [
18
],
"id": 258463,
"name": "Brocade Odyssey",
"origin_country": [
"CN"
],
"original_language": "zh",
"original_name": "蜀锦人家",
"overview": "Ji Yingying, a spirited woman from the Shu brocade, strives to restore her family’s honor and rebuild their legacy. Facing powerful rivals and the looming threat of Nanzhao Kingdom, she joins forces with Yang Jinglan to revive the Shu brocade industry and safeguard its artisans.",
"popularity": 2452.068,
"poster_path": "/6TobR12xuAxyuN8BL0Yf08ZfFly.jpg",
"vote_average": 7.5,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg",
"first_air_date": "2024-09-30",
"genre_ids": [
10766,
18,
35
],
"id": 257064,
"name": "Volta por Cima",
"origin_country": [
"BR"
],
"original_language": "pt",
"original_name": "Volta por Cima",
"overview": "",
"popularity": 2432.661,
"poster_path": "/nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg",
"vote_average": 6.4,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/tPLUHT2cQYJi66aSZZ1qrcu74Zq.jpg",
"first_air_date": "2024-11-04",
"genre_ids": [
10766,
18
],
"id": 257048,
"name": "Garota do Momento",
"origin_country": [
"BR"
],
"original_language": "pt",
"original_name": "Garota do Momento",
"overview": "",
"popularity": 2422.517,
"poster_path": "/jFSkjQSZ5Td52igalpoTQRuHtk.jpg",
"vote_average": 7.9,
"vote_count": 8
},
{
"adult": false,
"backdrop_path": "/mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg",
"first_air_date": "2005-10-13",
"genre_ids": [
10766
],
"id": 206559,
"name": "Binnelanders",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Binnelanders",
"overview": "A South African Afrikaans soap opera. It is set in and around the fictional private hospital, Binneland Kliniek, in Pretoria, and the storyline follows the trials, trauma and tribulations of the staff and patients of the hospital.",
"popularity": 2376.09,
"poster_path": "/3bzECfllho8PphdYujLUIuhncJD.jpg",
"vote_average": 5.7,
"vote_count": 75
},
{
"adult": false,
"backdrop_path": null,
"first_air_date": "2005-09-05",
"genre_ids": [
18,
35
],
"id": 36361,
"name": "Ulice",
"origin_country": [
"CZ"
],
"original_language": "cs",
"original_name": "Ulice",
"overview": "Ulice is a Czech soap opera produced and broadcast by Nova. In the Czech language Ulice means street.\n\nThe show describes the lives of the Farský, Jordán, Boháč, Nikl, and Liška families and many other people that live in Prague. Their daily battle against real problems of living in a modern world like divorce, love, betrayal and illness or disease. Ulice often shows crime.",
"popularity": 2372.58,
"poster_path": "/gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg",
"vote_average": 4.6,
"vote_count": 30
},
{
"adult": false,
"backdrop_path": "/zk3UqXnnK7cpUv6LsD9DS8FtUxb.jpg",
"first_air_date": "2024-09-02",
"genre_ids": [
18,
10759
],
"id": 256121,
"name": "Lavender Fields",
"origin_country": [
"PH"
],
"original_language": "tl",
"original_name": "Lavender Fields",
"overview": "Jasmin loved her idyllic life in her mountain town, but a brush with a criminal empire took it all away. Now she's out for revenge with a new identity.",
"popularity": 2323.255,
"poster_path": "/lphvsr062SlxWM6XegsV2dLGaiE.jpg",
"vote_average": 8.2,
"vote_count": 5
},
{
"adult": false,
"backdrop_path": "/9zIqN0oMmaeFvBlccgw80sWed7I.jpg",
"first_air_date": "2007-09-10",
"genre_ids": [
10763,
35
],
"id": 13008,
"name": "TMZ",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "TMZ",
"overview": "Based on the popular gossip website, this entertainment newsmagazine delivers daily updates on Hollywood's rich, beautiful and screwed-up. The program often shows highlights of the day's staff meeting during which reporters pitch ideas for stories to air that day.",
"popularity": 2148.637,
"poster_path": "/ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg",
"vote_average": 4.7,
"vote_count": 14
},
{
"adult": false,
"backdrop_path": "/cUuD7wHMudtpQHMmkVRdvunEuuf.jpg",
"first_air_date": "2024-12-01",
"genre_ids": [
35
],
"id": 262697,
"name": "Nissesvingen",
"origin_country": [
"NO"
],
"original_language": "no",
"original_name": "Nissesvingen",
"overview": "",
"popularity": 2108.584,
"poster_path": "/2ZIJRRbKNyMr7W4Imy6jjv3E6bD.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/i8iqYtAy9qcO5RSrA1f6fY1n6SN.jpg",
"first_air_date": "2015-11-16",
"genre_ids": [
10766
],
"id": 235484,
"name": "Suidooster",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Suidooster",
"overview": "Suidooster is a South African television soap opera produced by Suidooster Films which revolves around a matriarch, her family, friends and the people of Suidooster, a small shopping and business centre in the fictional Cape Town suburb of Ruiterbosch.",
"popularity": 2095.23,
"poster_path": "/naCgSiacvV685kait6fBvhVhdce.jpg",
"vote_average": 7.7,
"vote_count": 20
},
{
"adult": false,
"backdrop_path": "/jVkdx8ljJ5t6WeAeByw4tZX4LmW.jpg",
"first_air_date": "2014-12-01",
"genre_ids": [
10762,
10751,
10765
],
"id": 68822,
"name": "Time travels",
"origin_country": [
"DK"
],
"original_language": "da",
"original_name": "Tidsrejsen",
"overview": "A teenage girl wish for her parents to get back together, when suddenly she meets a time traveling guy from the future. Together they try to change both the past and the feature - with small bumps on their way.",
"popularity": 2086.688,
"poster_path": "/uP5zHXeXsm1pLdnTPinNC6nvbsN.jpg",
"vote_average": 7.1,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/C0A0Ar8QTnST03sy816MxdUt3K.jpg",
"first_air_date": "2010-11-22",
"genre_ids": [
10764
],
"id": 60780,
"name": "Four in a Bed",
"origin_country": [
"GB"
],
"original_language": "en",
"original_name": "Four in a Bed",
"overview": "Four pairs of B&B owners from across Britain take it in turns as hosts to decide which of their establishments provides the best value for money.",
"popularity": 2031.554,
"poster_path": "/nFzW9V9rjKQcsunNrjw1yPc2zT8.jpg",
"vote_average": 6.2,
"vote_count": 16
},
{
"adult": false,
"backdrop_path": "/ookJ1LS8Uc0ji7cSDuJfV7Qh6Lb.jpg",
"first_air_date": "2000-04-23",
"genre_ids": [
10764
],
"id": 18770,
"name": "Gran Hermano",
"origin_country": [
"ES"
],
"original_language": "es",
"original_name": "Gran Hermano",
"overview": "Gran Hermano is a reality television series broadcast in Spain on Telecinco and La Siete produced by Endemol. It is part of the Big Brother franchise first developed in the Netherlands. As of February 2012, 19 editions of the show have aired.",
"popularity": 1992.007,
"poster_path": "/gQ0Emh2LT047Fip2HWye3NkrkQB.jpg",
"vote_average": 4.6,
"vote_count": 16
}
],
"total_pages": 16,
"total_results": 315
}TV Series Lists
Airing Today
This endpoint is used to get a list of TV shows airing today.
GET
/
3
/
tv
/
airing_today
Airing Today
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D='import requests
url = "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/airing_today?%7B%7Bkey%7D%7D=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg",
"first_air_date": "2020-11-02",
"genre_ids": [
10766,
18
],
"id": 112470,
"name": "Ici tout commence",
"origin_country": [
"FR"
],
"original_language": "fr",
"original_name": "Ici tout commence",
"overview": "This television drama series is centered around the prestigious culinary school of renowned chef Auguste Armand. The show follows the lives of students and staff as they navigate the challenges and pressures of the culinary world—delving into their personal and professional lives, revealing secrets, rivalries, and complex relationships.",
"popularity": 3275.088,
"poster_path": "/v7nXPo2zdaIOfeIaERiOuTEt89N.jpg",
"vote_average": 6.9,
"vote_count": 84
},
{
"adult": false,
"backdrop_path": "/zSPvARNCFpZxmWjgJCsBu5PUlR9.jpg",
"first_air_date": "2024-10-21",
"genre_ids": [
35,
18,
10751,
10762,
10759
],
"id": 247885,
"name": "Papás por Conveniencia",
"origin_country": [
"MX",
"US"
],
"original_language": "en",
"original_name": "Papás por Conveniencia",
"overview": "Tino, a single father who faces great challenges in raising his two children, finds out one day that he is also the father of two rebellious teenagers, children of Aidé, a former high school classmate who has become an important businesswoman. For Tino, this news becomes an opportunity to take on the role of father of the children he never knew he had. Thus, he begins to work at Aidé's company, but everything gets complicated when Tino and his family move into Aidé's house to integrate into her new life. The house becomes a battlefield, both of their children have problems adapting, and love resurfaces between Tino and Aidé and a torrid romance begins. But building this new life for Aidé, Tino and their children will not be easy; they will have to face serious obstacles, always supported by the strength of their love and that of their children.",
"popularity": 3231.311,
"poster_path": "/y7yIu9PKx2WTphhYgbBq9C1RNzV.jpg",
"vote_average": 7.9,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/4i3iJepkqqH5JJgTNLJdi8ke6ir.jpg",
"first_air_date": "2024-05-06",
"genre_ids": [
10766
],
"id": 249010,
"name": "Kelders van Geheime",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Kelders van Geheime",
"overview": "Kelders van Geheime (Cellars of Secrets) is a South African, Afrikaans-language telenovela based on the wheeling's and dealings of the community that lives on Soebatskloof (a wine farm in the Cape). The series focuses on three families: the Abrahams, Syster and Marais households. These families will have to stand together, agree (or agree to disagree), and work together to earn their bread and butter – and a glass of wine.",
"popularity": 3060.98,
"poster_path": "/vf1I0G5jICTstI1EXxb9Oqq80TU.jpg",
"vote_average": 6.2,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/mLcD1v4sfoa1juOsBat7Vik7wEe.jpg",
"first_air_date": "2024-03-18",
"genre_ids": [
10764
],
"id": 248890,
"name": "Ready Steady Cook South Africa",
"origin_country": [
"ZA"
],
"original_language": "en",
"original_name": "Ready Steady Cook South Africa",
"overview": "In Ready Steady Cook, two teams - a Red Tomato and a Green Pepper - compete in a Red Kitchen and a Green Kitchen, together with a South African chef on each side and paired with enthusiastic home cooks, as they are challenged creatively with a mystery bag of ingredients in a 20-minute cook-off.",
"popularity": 3050.82,
"poster_path": "/30xX4IMbgnMbQwo76xM4BOSokZO.jpg",
"vote_average": 2.9,
"vote_count": 7
},
{
"adult": false,
"backdrop_path": "/lmvsFQpAhx4k9dqKvOgb2B63MsC.jpg",
"first_air_date": "2012-01-30",
"genre_ids": [
10763,
10767
],
"id": 113779,
"name": "Hallo Hessen",
"origin_country": [
"DE"
],
"original_language": "de",
"original_name": "Hallo Hessen",
"overview": "",
"popularity": 3037.128,
"poster_path": "/zRGme9GL0H5RmwzxKYzoXafcRDp.jpg",
"vote_average": 7.1,
"vote_count": 4
},
{
"adult": false,
"backdrop_path": "/2wNuLc0cEoPz6PZItftrZLHjG2k.jpg",
"first_air_date": "2024-10-27",
"genre_ids": [
18,
10751
],
"id": 251691,
"name": "Autumn of the Heart",
"origin_country": [
"SA"
],
"original_language": "ar",
"original_name": "خريف القلب",
"overview": "A devastating car accident unearths a long-buried secret that turns wealthy businessman Rashid and hardworking Nahla's life around; fifteen years ago, their daughters were switched at birth.",
"popularity": 2800.981,
"poster_path": "/8uDmIxjBx90y5OCwJDBADtQzxb7.jpg",
"vote_average": 5.7,
"vote_count": 3
},
{
"adult": false,
"backdrop_path": "/4ErOWmDGyGk0qCK1J8blAoj1a7a.jpg",
"first_air_date": "2024-06-18",
"genre_ids": [
18
],
"id": 252373,
"name": "A Promessa",
"origin_country": [
"PT"
],
"original_language": "pt",
"original_name": "A Promessa",
"overview": "",
"popularity": 2633.313,
"poster_path": "/uptgxt2apx5wwWItQzqL0HwhjZC.jpg",
"vote_average": 6.2,
"vote_count": 12
},
{
"adult": false,
"backdrop_path": "/wAZREM1qfwHFdXISMpjscwBXuUf.jpg",
"first_air_date": "2000-05-04",
"genre_ids": [
10767
],
"id": 112261,
"name": "Abendschau",
"origin_country": [
"DE"
],
"original_language": "de",
"original_name": "Abendschau",
"overview": "The Berliner Abendschau is the news magazine for Berlin.",
"popularity": 2508.867,
"poster_path": "/A9j8yRrHPcVPVpoYt754t0BrtdB.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/n5hwt6FCkqgWFui8Dx7SZwY8XhL.jpg",
"first_air_date": "2024-11-30",
"genre_ids": [
18
],
"id": 258463,
"name": "Brocade Odyssey",
"origin_country": [
"CN"
],
"original_language": "zh",
"original_name": "蜀锦人家",
"overview": "Ji Yingying, a spirited woman from the Shu brocade, strives to restore her family’s honor and rebuild their legacy. Facing powerful rivals and the looming threat of Nanzhao Kingdom, she joins forces with Yang Jinglan to revive the Shu brocade industry and safeguard its artisans.",
"popularity": 2452.068,
"poster_path": "/6TobR12xuAxyuN8BL0Yf08ZfFly.jpg",
"vote_average": 7.5,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg",
"first_air_date": "2024-09-30",
"genre_ids": [
10766,
18,
35
],
"id": 257064,
"name": "Volta por Cima",
"origin_country": [
"BR"
],
"original_language": "pt",
"original_name": "Volta por Cima",
"overview": "",
"popularity": 2432.661,
"poster_path": "/nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg",
"vote_average": 6.4,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/tPLUHT2cQYJi66aSZZ1qrcu74Zq.jpg",
"first_air_date": "2024-11-04",
"genre_ids": [
10766,
18
],
"id": 257048,
"name": "Garota do Momento",
"origin_country": [
"BR"
],
"original_language": "pt",
"original_name": "Garota do Momento",
"overview": "",
"popularity": 2422.517,
"poster_path": "/jFSkjQSZ5Td52igalpoTQRuHtk.jpg",
"vote_average": 7.9,
"vote_count": 8
},
{
"adult": false,
"backdrop_path": "/mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg",
"first_air_date": "2005-10-13",
"genre_ids": [
10766
],
"id": 206559,
"name": "Binnelanders",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Binnelanders",
"overview": "A South African Afrikaans soap opera. It is set in and around the fictional private hospital, Binneland Kliniek, in Pretoria, and the storyline follows the trials, trauma and tribulations of the staff and patients of the hospital.",
"popularity": 2376.09,
"poster_path": "/3bzECfllho8PphdYujLUIuhncJD.jpg",
"vote_average": 5.7,
"vote_count": 75
},
{
"adult": false,
"backdrop_path": null,
"first_air_date": "2005-09-05",
"genre_ids": [
18,
35
],
"id": 36361,
"name": "Ulice",
"origin_country": [
"CZ"
],
"original_language": "cs",
"original_name": "Ulice",
"overview": "Ulice is a Czech soap opera produced and broadcast by Nova. In the Czech language Ulice means street.\n\nThe show describes the lives of the Farský, Jordán, Boháč, Nikl, and Liška families and many other people that live in Prague. Their daily battle against real problems of living in a modern world like divorce, love, betrayal and illness or disease. Ulice often shows crime.",
"popularity": 2372.58,
"poster_path": "/gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg",
"vote_average": 4.6,
"vote_count": 30
},
{
"adult": false,
"backdrop_path": "/zk3UqXnnK7cpUv6LsD9DS8FtUxb.jpg",
"first_air_date": "2024-09-02",
"genre_ids": [
18,
10759
],
"id": 256121,
"name": "Lavender Fields",
"origin_country": [
"PH"
],
"original_language": "tl",
"original_name": "Lavender Fields",
"overview": "Jasmin loved her idyllic life in her mountain town, but a brush with a criminal empire took it all away. Now she's out for revenge with a new identity.",
"popularity": 2323.255,
"poster_path": "/lphvsr062SlxWM6XegsV2dLGaiE.jpg",
"vote_average": 8.2,
"vote_count": 5
},
{
"adult": false,
"backdrop_path": "/9zIqN0oMmaeFvBlccgw80sWed7I.jpg",
"first_air_date": "2007-09-10",
"genre_ids": [
10763,
35
],
"id": 13008,
"name": "TMZ",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "TMZ",
"overview": "Based on the popular gossip website, this entertainment newsmagazine delivers daily updates on Hollywood's rich, beautiful and screwed-up. The program often shows highlights of the day's staff meeting during which reporters pitch ideas for stories to air that day.",
"popularity": 2148.637,
"poster_path": "/ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg",
"vote_average": 4.7,
"vote_count": 14
},
{
"adult": false,
"backdrop_path": "/cUuD7wHMudtpQHMmkVRdvunEuuf.jpg",
"first_air_date": "2024-12-01",
"genre_ids": [
35
],
"id": 262697,
"name": "Nissesvingen",
"origin_country": [
"NO"
],
"original_language": "no",
"original_name": "Nissesvingen",
"overview": "",
"popularity": 2108.584,
"poster_path": "/2ZIJRRbKNyMr7W4Imy6jjv3E6bD.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/i8iqYtAy9qcO5RSrA1f6fY1n6SN.jpg",
"first_air_date": "2015-11-16",
"genre_ids": [
10766
],
"id": 235484,
"name": "Suidooster",
"origin_country": [
"ZA"
],
"original_language": "af",
"original_name": "Suidooster",
"overview": "Suidooster is a South African television soap opera produced by Suidooster Films which revolves around a matriarch, her family, friends and the people of Suidooster, a small shopping and business centre in the fictional Cape Town suburb of Ruiterbosch.",
"popularity": 2095.23,
"poster_path": "/naCgSiacvV685kait6fBvhVhdce.jpg",
"vote_average": 7.7,
"vote_count": 20
},
{
"adult": false,
"backdrop_path": "/jVkdx8ljJ5t6WeAeByw4tZX4LmW.jpg",
"first_air_date": "2014-12-01",
"genre_ids": [
10762,
10751,
10765
],
"id": 68822,
"name": "Time travels",
"origin_country": [
"DK"
],
"original_language": "da",
"original_name": "Tidsrejsen",
"overview": "A teenage girl wish for her parents to get back together, when suddenly she meets a time traveling guy from the future. Together they try to change both the past and the feature - with small bumps on their way.",
"popularity": 2086.688,
"poster_path": "/uP5zHXeXsm1pLdnTPinNC6nvbsN.jpg",
"vote_average": 7.1,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/C0A0Ar8QTnST03sy816MxdUt3K.jpg",
"first_air_date": "2010-11-22",
"genre_ids": [
10764
],
"id": 60780,
"name": "Four in a Bed",
"origin_country": [
"GB"
],
"original_language": "en",
"original_name": "Four in a Bed",
"overview": "Four pairs of B&B owners from across Britain take it in turns as hosts to decide which of their establishments provides the best value for money.",
"popularity": 2031.554,
"poster_path": "/nFzW9V9rjKQcsunNrjw1yPc2zT8.jpg",
"vote_average": 6.2,
"vote_count": 16
},
{
"adult": false,
"backdrop_path": "/ookJ1LS8Uc0ji7cSDuJfV7Qh6Lb.jpg",
"first_air_date": "2000-04-23",
"genre_ids": [
10764
],
"id": 18770,
"name": "Gran Hermano",
"origin_country": [
"ES"
],
"original_language": "es",
"original_name": "Gran Hermano",
"overview": "Gran Hermano is a reality television series broadcast in Spain on Telecinco and La Siete produced by Endemol. It is part of the Big Brother franchise first developed in the Netherlands. As of February 2012, 19 editions of the show have aired.",
"popularity": 1992.007,
"poster_path": "/gQ0Emh2LT047Fip2HWye3NkrkQB.jpg",
"vote_average": 4.6,
"vote_count": 16
}
],
"total_pages": 16,
"total_results": 315
}Authorizations
Response
200 - application/json
OK
Example:
1
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"backdrop_path": "/vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg",
"first_air_date": "2020-11-02",
"genre_ids": [10766, 18],
"id": 112470,
"name": "Ici tout commence",
"origin_country": ["FR"],
"original_language": "fr",
"original_name": "Ici tout commence",
"overview": "This television drama series is centered around the prestigious culinary school of renowned chef Auguste Armand. The show follows the lives of students and staff as they navigate the challenges and pressures of the culinary world—delving into their personal and professional lives, revealing secrets, rivalries, and complex relationships.",
"popularity": 3275.088,
"poster_path": "/v7nXPo2zdaIOfeIaERiOuTEt89N.jpg",
"vote_average": 6.9,
"vote_count": 84
},
{
"adult": false,
"backdrop_path": "/zSPvARNCFpZxmWjgJCsBu5PUlR9.jpg",
"first_air_date": "2024-10-21",
"genre_ids": [35, 18, 10751, 10762, 10759],
"id": 247885,
"name": "Papás por Conveniencia",
"origin_country": ["MX", "US"],
"original_language": "en",
"original_name": "Papás por Conveniencia",
"overview": "Tino, a single father who faces great challenges in raising his two children, finds out one day that he is also the father of two rebellious teenagers, children of Aidé, a former high school classmate who has become an important businesswoman. For Tino, this news becomes an opportunity to take on the role of father of the children he never knew he had. Thus, he begins to work at Aidé's company, but everything gets complicated when Tino and his family move into Aidé's house to integrate into her new life. The house becomes a battlefield, both of their children have problems adapting, and love resurfaces between Tino and Aidé and a torrid romance begins. But building this new life for Aidé, Tino and their children will not be easy; they will have to face serious obstacles, always supported by the strength of their love and that of their children.",
"popularity": 3231.311,
"poster_path": "/y7yIu9PKx2WTphhYgbBq9C1RNzV.jpg",
"vote_average": 7.9,
"vote_count": 33
},
{
"adult": false,
"backdrop_path": "/4i3iJepkqqH5JJgTNLJdi8ke6ir.jpg",
"first_air_date": "2024-05-06",
"genre_ids": [10766],
"id": 249010,
"name": "Kelders van Geheime",
"origin_country": ["ZA"],
"original_language": "af",
"original_name": "Kelders van Geheime",
"overview": "Kelders van Geheime (Cellars of Secrets) is a South African, Afrikaans-language telenovela based on the wheeling's and dealings of the community that lives on Soebatskloof (a wine farm in the Cape). The series focuses on three families: the Abrahams, Syster and Marais households. These families will have to stand together, agree (or agree to disagree), and work together to earn their bread and butter – and a glass of wine.",
"popularity": 3060.98,
"poster_path": "/vf1I0G5jICTstI1EXxb9Oqq80TU.jpg",
"vote_average": 6.2,
"vote_count": 11
},
{
"adult": false,
"backdrop_path": "/mLcD1v4sfoa1juOsBat7Vik7wEe.jpg",
"first_air_date": "2024-03-18",
"genre_ids": [10764],
"id": 248890,
"name": "Ready Steady Cook South Africa",
"origin_country": ["ZA"],
"original_language": "en",
"original_name": "Ready Steady Cook South Africa",
"overview": "In Ready Steady Cook, two teams - a Red Tomato and a Green Pepper - compete in a Red Kitchen and a Green Kitchen, together with a South African chef on each side and paired with enthusiastic home cooks, as they are challenged creatively with a mystery bag of ingredients in a 20-minute cook-off.",
"popularity": 3050.82,
"poster_path": "/30xX4IMbgnMbQwo76xM4BOSokZO.jpg",
"vote_average": 2.9,
"vote_count": 7
},
{
"adult": false,
"backdrop_path": "/lmvsFQpAhx4k9dqKvOgb2B63MsC.jpg",
"first_air_date": "2012-01-30",
"genre_ids": [10763, 10767],
"id": 113779,
"name": "Hallo Hessen",
"origin_country": ["DE"],
"original_language": "de",
"original_name": "Hallo Hessen",
"overview": "",
"popularity": 3037.128,
"poster_path": "/zRGme9GL0H5RmwzxKYzoXafcRDp.jpg",
"vote_average": 7.1,
"vote_count": 4
},
{
"adult": false,
"backdrop_path": "/2wNuLc0cEoPz6PZItftrZLHjG2k.jpg",
"first_air_date": "2024-10-27",
"genre_ids": [18, 10751],
"id": 251691,
"name": "Autumn of the Heart",
"origin_country": ["SA"],
"original_language": "ar",
"original_name": "خريف القلب",
"overview": "A devastating car accident unearths a long-buried secret that turns wealthy businessman Rashid and hardworking Nahla's life around; fifteen years ago, their daughters were switched at birth.",
"popularity": 2800.981,
"poster_path": "/8uDmIxjBx90y5OCwJDBADtQzxb7.jpg",
"vote_average": 5.7,
"vote_count": 3
},
{
"adult": false,
"backdrop_path": "/4ErOWmDGyGk0qCK1J8blAoj1a7a.jpg",
"first_air_date": "2024-06-18",
"genre_ids": [18],
"id": 252373,
"name": "A Promessa",
"origin_country": ["PT"],
"original_language": "pt",
"original_name": "A Promessa",
"overview": "",
"popularity": 2633.313,
"poster_path": "/uptgxt2apx5wwWItQzqL0HwhjZC.jpg",
"vote_average": 6.2,
"vote_count": 12
},
{
"adult": false,
"backdrop_path": "/wAZREM1qfwHFdXISMpjscwBXuUf.jpg",
"first_air_date": "2000-05-04",
"genre_ids": [10767],
"id": 112261,
"name": "Abendschau",
"origin_country": ["DE"],
"original_language": "de",
"original_name": "Abendschau",
"overview": "The Berliner Abendschau is the news magazine for Berlin.",
"popularity": 2508.867,
"poster_path": "/A9j8yRrHPcVPVpoYt754t0BrtdB.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/n5hwt6FCkqgWFui8Dx7SZwY8XhL.jpg",
"first_air_date": "2024-11-30",
"genre_ids": [18],
"id": 258463,
"name": "Brocade Odyssey",
"origin_country": ["CN"],
"original_language": "zh",
"original_name": "蜀锦人家",
"overview": "Ji Yingying, a spirited woman from the Shu brocade, strives to restore her family’s honor and rebuild their legacy. Facing powerful rivals and the looming threat of Nanzhao Kingdom, she joins forces with Yang Jinglan to revive the Shu brocade industry and safeguard its artisans.",
"popularity": 2452.068,
"poster_path": "/6TobR12xuAxyuN8BL0Yf08ZfFly.jpg",
"vote_average": 7.5,
"vote_count": 2
},
{
"adult": false,
"backdrop_path": "/j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg",
"first_air_date": "2024-09-30",
"genre_ids": [10766, 18, 35],
"id": 257064,
"name": "Volta por Cima",
"origin_country": ["BR"],
"original_language": "pt",
"original_name": "Volta por Cima",
"overview": "",
"popularity": 2432.661,
"poster_path": "/nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg",
"vote_average": 6.4,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/tPLUHT2cQYJi66aSZZ1qrcu74Zq.jpg",
"first_air_date": "2024-11-04",
"genre_ids": [10766, 18],
"id": 257048,
"name": "Garota do Momento",
"origin_country": ["BR"],
"original_language": "pt",
"original_name": "Garota do Momento",
"overview": "",
"popularity": 2422.517,
"poster_path": "/jFSkjQSZ5Td52igalpoTQRuHtk.jpg",
"vote_average": 7.9,
"vote_count": 8
},
{
"adult": false,
"backdrop_path": "/mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg",
"first_air_date": "2005-10-13",
"genre_ids": [10766],
"id": 206559,
"name": "Binnelanders",
"origin_country": ["ZA"],
"original_language": "af",
"original_name": "Binnelanders",
"overview": "A South African Afrikaans soap opera. It is set in and around the fictional private hospital, Binneland Kliniek, in Pretoria, and the storyline follows the trials, trauma and tribulations of the staff and patients of the hospital.",
"popularity": 2376.09,
"poster_path": "/3bzECfllho8PphdYujLUIuhncJD.jpg",
"vote_average": 5.7,
"vote_count": 75
},
{
"adult": false,
"backdrop_path": null,
"first_air_date": "2005-09-05",
"genre_ids": [18, 35],
"id": 36361,
"name": "Ulice",
"origin_country": ["CZ"],
"original_language": "cs",
"original_name": "Ulice",
"overview": "Ulice is a Czech soap opera produced and broadcast by Nova. In the Czech language Ulice means street.\n\nThe show describes the lives of the Farský, Jordán, Boháč, Nikl, and Liška families and many other people that live in Prague. Their daily battle against real problems of living in a modern world like divorce, love, betrayal and illness or disease. Ulice often shows crime.",
"popularity": 2372.58,
"poster_path": "/gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg",
"vote_average": 4.6,
"vote_count": 30
},
{
"adult": false,
"backdrop_path": "/zk3UqXnnK7cpUv6LsD9DS8FtUxb.jpg",
"first_air_date": "2024-09-02",
"genre_ids": [18, 10759],
"id": 256121,
"name": "Lavender Fields",
"origin_country": ["PH"],
"original_language": "tl",
"original_name": "Lavender Fields",
"overview": "Jasmin loved her idyllic life in her mountain town, but a brush with a criminal empire took it all away. Now she's out for revenge with a new identity.",
"popularity": 2323.255,
"poster_path": "/lphvsr062SlxWM6XegsV2dLGaiE.jpg",
"vote_average": 8.2,
"vote_count": 5
},
{
"adult": false,
"backdrop_path": "/9zIqN0oMmaeFvBlccgw80sWed7I.jpg",
"first_air_date": "2007-09-10",
"genre_ids": [10763, 35],
"id": 13008,
"name": "TMZ",
"origin_country": ["US"],
"original_language": "en",
"original_name": "TMZ",
"overview": "Based on the popular gossip website, this entertainment newsmagazine delivers daily updates on Hollywood's rich, beautiful and screwed-up. The program often shows highlights of the day's staff meeting during which reporters pitch ideas for stories to air that day.",
"popularity": 2148.637,
"poster_path": "/ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg",
"vote_average": 4.7,
"vote_count": 14
},
{
"adult": false,
"backdrop_path": "/cUuD7wHMudtpQHMmkVRdvunEuuf.jpg",
"first_air_date": "2024-12-01",
"genre_ids": [35],
"id": 262697,
"name": "Nissesvingen",
"origin_country": ["NO"],
"original_language": "no",
"original_name": "Nissesvingen",
"overview": "",
"popularity": 2108.584,
"poster_path": "/2ZIJRRbKNyMr7W4Imy6jjv3E6bD.jpg",
"vote_average": 0,
"vote_count": 0
},
{
"adult": false,
"backdrop_path": "/i8iqYtAy9qcO5RSrA1f6fY1n6SN.jpg",
"first_air_date": "2015-11-16",
"genre_ids": [10766],
"id": 235484,
"name": "Suidooster",
"origin_country": ["ZA"],
"original_language": "af",
"original_name": "Suidooster",
"overview": "Suidooster is a South African television soap opera produced by Suidooster Films which revolves around a matriarch, her family, friends and the people of Suidooster, a small shopping and business centre in the fictional Cape Town suburb of Ruiterbosch.",
"popularity": 2095.23,
"poster_path": "/naCgSiacvV685kait6fBvhVhdce.jpg",
"vote_average": 7.7,
"vote_count": 20
},
{
"adult": false,
"backdrop_path": "/jVkdx8ljJ5t6WeAeByw4tZX4LmW.jpg",
"first_air_date": "2014-12-01",
"genre_ids": [10762, 10751, 10765],
"id": 68822,
"name": "Time travels",
"origin_country": ["DK"],
"original_language": "da",
"original_name": "Tidsrejsen",
"overview": "A teenage girl wish for her parents to get back together, when suddenly she meets a time traveling guy from the future. Together they try to change both the past and the feature - with small bumps on their way.",
"popularity": 2086.688,
"poster_path": "/uP5zHXeXsm1pLdnTPinNC6nvbsN.jpg",
"vote_average": 7.1,
"vote_count": 9
},
{
"adult": false,
"backdrop_path": "/C0A0Ar8QTnST03sy816MxdUt3K.jpg",
"first_air_date": "2010-11-22",
"genre_ids": [10764],
"id": 60780,
"name": "Four in a Bed",
"origin_country": ["GB"],
"original_language": "en",
"original_name": "Four in a Bed",
"overview": "Four pairs of B&B owners from across Britain take it in turns as hosts to decide which of their establishments provides the best value for money.",
"popularity": 2031.554,
"poster_path": "/nFzW9V9rjKQcsunNrjw1yPc2zT8.jpg",
"vote_average": 6.2,
"vote_count": 16
},
{
"adult": false,
"backdrop_path": "/ookJ1LS8Uc0ji7cSDuJfV7Qh6Lb.jpg",
"first_air_date": "2000-04-23",
"genre_ids": [10764],
"id": 18770,
"name": "Gran Hermano",
"origin_country": ["ES"],
"original_language": "es",
"original_name": "Gran Hermano",
"overview": "Gran Hermano is a reality television series broadcast in Spain on Telecinco and La Siete produced by Endemol. It is part of the Big Brother franchise first developed in the Netherlands. As of February 2012, 19 editions of the show have aired.",
"popularity": 1992.007,
"poster_path": "/gQ0Emh2LT047Fip2HWye3NkrkQB.jpg",
"vote_average": 4.6,
"vote_count": 16
}
]
Example:
16
Example:
315
Was this page helpful?
⌘I