# StableMedia Get Show

> StableMedia Get Show is a paid API for AI agents from stablemedia.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves streaming availability data for a specific show, including which services carry it across 60+ countries and 200+ services

## Facts

- Endpoint: POST https://stablemedia.dev/api/shows/get
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablemedia-get-show-1dfa322f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w88Opw9nl-otVRKjbT41B

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablemedia-get-show-1dfa322f -d '<json body>'
```

Example prompt: Can you check StableMedia to find out which streaming services currently carry 'Severance' and whether it's available in Canada and the UK?

## When to prefer this

Use this endpoint when you need real-time or up-to-date streaming availability for a specific show across a broad range of countries and services. Prefer this over scraping individual streaming sites or using cached/static datasets when accuracy across 60+ countries and 200+ services matters.

## Known failure modes

- Show not found in database — returns empty or null result
- Invalid country code — returns error or empty availability
- Payment failure via x402 — request blocked before processing
- Unsupported streaming service filter — ignored or error returned
- Rate limiting or quota exceeded — HTTP 429 or payment-related rejection

## How this service works

Pay-per-request streaming availability data. Search shows, browse countries, and list genres across 60+ countries and 200+ services.

## Output

Returns streaming availability data for the requested show, including which of the 200+ supported streaming services carry it and in which of the 60+ supported countries, along with genre and show metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "minLength": 1,
   "description": "Internal ID, IMDb ID (tt...), or TMDB ID (movie/xxx | tv/xxx)"
  },
  "country": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "include_images": {
   "type": "boolean",
   "default": false,
   "description": "Include poster/backdrop imageSet URLs in the response. Default false (strips ~70% of payload)."
  },
  "output_language": {
   "type": "string"
  },
  "series_granularity": {
   "enum": [
    "show",
    "season",
    "episode"
   ],
   "type": "string"
  },
  "include_audio_subtitles": {
   "type": "boolean",
   "default": false,
   "description": "Include per-option audios[] and subtitles[] arrays. Default false."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablemedia-get-show-1dfa322f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablemedia.dev](https://www.zero.xyz/host/stablemedia.dev/llms.txt)
