/v1/show
A show details, rating and popularity
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/tvmaze-api/v1/show" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tvmaze-api/v1/show", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tvmaze-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/tvmaze-api/v1/show",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"id": 169,
"url": "https://www.tvmaze.com/shows/169/breaking-bad",
"imdb": "tt0903747",
"name": "Breaking Bad",
"type": "Scripted",
"ended": "2019-10-11",
"image": "https://static.tvmaze.com/uploads/images/medium_portrait/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 ",
"language": "English",
"premiered": "2008-01-20",
"popularity": 100,
"official_site": "http://www.amc.com/shows/breaking-bad",
"premiered_year": "2008"
},
"meta": {
"timestamp": "2026-06-09T03:02:02.634Z",
"request_id": "3c0ac6ef-f0ba-4c49-b2a0-eebe2b8660a5"
},
"status": "ok",
"message": "Show retrieved successfully",
"success": true
}