# Streaming Show Title Search by Country

> Streaming Show Title Search by Country is a paid API for AI agents from stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search for streaming shows by title in a specific country, returning availability and metadata across streaming platforms

## Facts

- Endpoint: POST https://stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/api/shows/search-title
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/streaming-show-title-search-by-country-a265d66c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k3Ze0fCGk3cERwgc-Voia

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 streaming-show-title-search-by-country-a265d66c -d '<json body>'
```

Example prompt: Search for the series 'Succession' on streaming services in the UK and tell me which platforms carry it.

## When to prefer this

Use this endpoint when you need to find streaming availability for a specific show title in a given country, especially when you want to know which platforms carry the show and need show-level metadata. Prefer this over generic search engines when structured streaming data is required.

## Known failure modes

- Title not found in specified country returns empty results
- Invalid country code returns error or no results
- Unsupported show_type value causes bad request
- Truncated response if result payload is very large
- Network timeout or Vercel cold start delays
- Payment failure via x402 protocol blocks request

## How this service works

Search streaming shows by title in a country

## Output

Returns a list of matching streaming shows including platform availability, show metadata, series information, and other relevant details for the queried title in the specified country.

## Example request

```json
{
 "title": "Breaking Bad",
 "country": "us",
 "show_type": "series",
 "include_images": false,
 "output_language": "en",
 "series_granularity": "show",
 "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/streaming-show-title-search-by-country-a265d66c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app](https://www.zero.xyz/host/stable-media-git-ben-upgrade-agentcash-rou-02e093-merit-systems.vercel.app/llms.txt)
