Naar de inhoud
GET /v1/show

A show details, rating and popularity

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/tvmaze-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}