get_watch_providers
Find streaming services for movies and TV shows in specific regions. Input media type and region code to get available providers.
Instructions
Retrieves watch providers (streaming services) for movies or TV in a specific region. Input: type (required: movie|tv), language (optional ISO 639-1, default en), watch_region (required ISO 3166-1 code). Output: JSON with provider list. Purpose: Discover streaming availability for content recommendations by AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ISO 639-1 language (e.g., en) | |
type | Yes | Media type for providers endpoint | |
watch_region | Yes | ISO 3166-1 region code (e.g., IT) |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "ISO 639-1 language (e.g., en)",
"type": "string"
},
"type": {
"description": "Media type for providers endpoint",
"enum": [
"movie",
"tv"
],
"type": "string"
},
"watch_region": {
"description": "ISO 3166-1 region code (e.g., IT)",
"type": "string"
}
},
"required": [
"watch_region",
"type"
],
"type": "object"
}