# StableMedia Top Shows

> StableMedia Top Shows 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).

Returns top/trending streaming shows across 60+ countries and 200+ streaming services

## Facts

- Endpoint: POST https://stablemedia.dev/api/shows/top
- 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-top-shows-60811916
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U0shUyj7wpdK2JrQXAFEx

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-top-shows-60811916 -d '<json body>'
```

Example prompt: What are the top shows streaming in the US on Netflix right now — can you pull the current trending list?

## When to prefer this

Use this endpoint when you need current trending or top-ranked show data across a wide range of countries and streaming platforms simultaneously. Prefer this over individual platform APIs when breadth of coverage (60+ countries, 200+ services) matters more than deep platform-specific metadata.

## Known failure modes

- Unsupported country code returns empty or error response
- Invalid streaming service identifier returns no results
- Rate limiting or payment failure prevents response
- No top shows data available for requested filter combination

## How this service works

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

## Output

A ranked list of top/trending streaming shows for the specified country and/or streaming service, including show titles, availability details, and ranking positions across 60+ countries and 200+ streaming services.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "service": {
   "type": "string",
   "minLength": 1,
   "description": "Service ID: netflix, prime, disney, apple, or hbo"
  },
  "show_type": {
   "enum": [
    "movie",
    "series"
   ],
   "type": "string"
  },
  "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"
  },
  "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-top-shows-60811916/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)
