images: Get show images

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

Description

Get all promotional images for a specific show. Returns posters, banners, and other artwork in various resolutions. Use this when you need visual assets for displaying show information.

From spec: Returns images for a show.

Usage Tips

- Images categorized by type (poster, banner, etc.) - Multiple resolutions available per image - Original images linked when available - May return empty if no images available

Parameters (1)

id (integer, path, required)

Show ID

Examples (1)

Get promotional images for Under the Dome probe-gate

Demonstrates fetching promotional artwork including posters, banners, and backgrounds

curl 'https://api.tvmaze.com/shows/1/images'
import requests

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

api = zingu_apis.api("tvmaze")
result = api.fetch("shows/{id}/images")

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

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 01:24:00.865009 200 188ms
2026-04-15 01:41:29.563046 200 158ms
2026-04-14 00:50:53.867142 200 141ms
2026-04-12 12:55:59.744280 200 178ms
2026-04-10 03:10:59.989626 200 94ms
2026-04-09 01:52:17.820992 200 222ms