/v1/schedule
A country daily broadcast schedule
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/tvmaze-api/v1/schedule" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tvmaze-api/v1/schedule", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tvmaze-api/v1/schedule");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tvmaze-api/v1/schedule",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"date": "2026-06-09",
"count": 115,
"country": "US",
"episodes": [
{
"show": "The Story Is with Elex Michaelson",
"rating": null,
"season": 2026,
"airdate": "2026-06-08",
"airtime": "00:00",
"episode": 111,
"network": "CNN",
"show_id": 87855,
"episode_name": "Episode 111"
},
{
"show": "Late Night with Seth Meyers",
"rating": 4.6,
"season": 2026,
"airdate": "2026-06-08",
"airtime": "00:35",
"episode": 60,
"network": "NBC",
"show_id": 363,
"episode_name": "Josh Gad, Andrew Rannells, Hannah Berner"
},
{
"show": "Way Too Early",
"rating": null,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "05:00",
"episode": 111,
"network": "MS NOW",
"show_id": 15308,
"episode_name": "Episode 111"
},
{
"show": "FOX Weather First",
"rating": null,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "05:00",
"episode": 114,
"network": "Fox Business Network",
"show_id": 86122,
"episode_name": "Episode 114"
},
{
"show": "Morning Joe",
"rating": 1.2,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "06:00",
"episode": 113,
"network": "MS NOW",
"show_id": 15309,
"episode_name": "Episode 113"
},
{
"show": "Wake Up America Early",
"rating": null,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "06:00",
"episode": 114,
"network": "Newsmax",
"show_id": 86410,
"episode_name": "Episode 114"
},
{
"show": "Morning in America",
"rating": null,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "06:00",
"episode": 114,
"network": "NewsNation",
"show_id": 76534,
"episode_name": "Episode 114"
},
{
"show": "Mornings with Maria",
"rating": null,
"season": 2026,
"airdate": "2026-06-09",
"airtime": "06:00",
"episode": 114,
"network": "Fox Business Netw
…