Aller au contenu
GET /v1/episode

A specific episode by season + number

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/tvshows-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}