# StableMedia Search Title

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

Search for streaming shows by title across 60+ countries and 200+ streaming services to find availability data

## Facts

- Endpoint: POST https://stablemedia.dev/api/shows/search-title
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablemedia-search-title-0b5d0fca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A7Z96kgGut0uRagVm2tg-

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-search-title-0b5d0fca -d '<json body>'
```

Example prompt: Search StableMedia for 'Severance' and tell me which streaming services carry it and in which countries.

## When to prefer this

Use this endpoint when you need to find where a specific show or movie can be streamed, especially when coverage across many countries (60+) and services (200+) is important. Prefer over alternatives when pay-per-request pricing is acceptable and broad international streaming catalog coverage is needed.

## Known failure modes

- Title not found returns empty results or 404
- Invalid or unsupported country code returns error
- Payment not processed (x402) results in 402 Payment Required response
- Malformed request body returns 400 Bad Request
- Rate limiting or service downtime returns 5xx errors

## 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 list of matching shows with their streaming availability details, including which services carry the title and in which of the 60+ supported countries, along with genre and other metadata.

## Example request

```json
{
 "title": "Severance",
 "country": "us",
 "show_type": "series",
 "include_images": false,
 "include_audio_subtitles": false
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string",
   "minLength": 1,
   "description": "Title to search for"
  },
  "country": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2,
   "description": "ISO 3166-1 alpha-2 country code (e.g. \"us\")"
  },
  "show_type": {
   "enum": [
    "movie",
    "series"
   ],
   "type": "string",
   "description": "Filter by movie or series"
  },
  "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",
   "description": "ISO 639-1 language code (default \"en\")"
  },
  "series_granularity": {
   "enum": [
    "show",
    "season",
    "episode"
   ],
   "type": "string",
   "description": "show, season, or episode (default \"show\")"
  },
  "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-search-title-0b5d0fca/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)
