/v1/episode
A specific episode by season + number
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tvshows-api/v1/episode" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tvshows-api/v1/episode", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tvshows-api/v1/episode");
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/tvshows-api/v1/episode",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"show": {
"id": 169,
"name": "Breaking Bad"
},
"episode": {
"id": 12192,
"code": "S01E01",
"name": "Pilot",
"type": "regular",
"image": "https://static.tvmaze.com/uploads/images/original_untouched/405/1012681.jpg",
"number": 1,
"rating": 8.2,
"season": 1,
"airdate": "2008-01-20",
"airtime": "22:00",
"runtime": 60,
"summary": "A high-school chemistry teacher (Bryan Cranston) is diagnosed with a deadly cancer, so he puts his expertise to use and teams with an ex-student (Aaron Paul) to manufacture top-grade crystal meth in hopes of providing for his family after he's gone."
}
},
"meta": {
"timestamp": "2026-06-01T00:04:21.699Z",
"request_id": "d7ed73ac-65c7-41c1-9961-befcae4f5239"
},
"status": "ok",
"message": "Episode retrieved",
"success": true
}