episodes: Get season episodes

API: tvmaze.com:tvmaze-api
Endpoint: /seasons/{id}/episodes
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 109ms

Description

Get all episodes belonging to a specific season. Returns episodes for the season identified by TVmaze season ID (not show ID + season number). Use this when you have a season ID and want only that season's episodes.

From spec: Returns all episodes for a specific season.

Usage Tips

- Requires season ID, not show ID - Get season IDs from /shows/{id}/seasons - Episodes sorted by episode number - Returns 404 for invalid season ID

Parameters (1)

id (integer, path, required)

Season ID

Examples (1)

Get all episodes for Season 1 of Under the Dome probe-gate

Demonstrates fetching complete episode list for a season with full episode metadata

curl 'https://api.tvmaze.com/seasons/1/episodes'
import requests

resp = requests.get("https://api.tvmaze.com/seasons/1/episodes")
data = resp.json()
import zingu_apis

api = zingu_apis.api("tvmaze")
result = api.fetch("seasons/{id}/episodes")

for item in result:
    print(item)
const resp = await fetch("https://api.tvmaze.com/seasons/1/episodes");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 17:08:03.690516 200 109ms
2026-04-16 03:02:22.951878 200 142ms
2026-04-15 03:58:41.822358 200 204ms
2026-04-14 00:07:24.034727 200 184ms
2026-04-12 14:27:07.154089 200 122ms
2026-04-10 02:09:05.730763 200 92ms
2026-04-09 01:31:35.648400 200 209ms