/v1/show
Show details by name or id
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/tvshows-api/v1/show" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tvshows-api/v1/show", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tvshows-api/v1/show");
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/show",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"show": {
"id": 169,
"name": "Breaking Bad",
"type": "Scripted",
"ended": "2019-10-11",
"image": "https://static.tvmaze.com/uploads/images/original_untouched/501/1253519.jpg",
"genres": [
"Drama",
"Crime",
"Thriller"
],
"rating": 9.2,
"status": "Ended",
"country": "US",
"network": "AMC",
"runtime": 60,
"summary": "Breaking Bad follows protagonist Walter White, a chemistry teacher who lives in New Mexico with his wife and teenage son who has cerebral palsy. White is diagnosed with Stage III cancer and given a prognosis of two years left to live. With a new sense of fearlessness based on his medical prognosis, and a desire to secure his family's financial security, White chooses to enter a dangerous world of drugs and crime and ascends to power in this world. The series explores how a fatal diagnosis such as White's releases a typical man from the daily concerns and constraints of normal society and follows his transformation from mild family man to a kingpin of the drug trade.",
"language": "English",
"premiered": "2008-01-20",
"official_site": "http://www.amc.com/shows/breaking-bad"
}
},
"meta": {
"timestamp": "2026-06-01T00:04:22.078Z",
"request_id": "a3462168-d099-4691-b444-f300317df6e0"
},
"status": "ok",
"message": "Show retrieved",
"success": true
}