get_watch_providers
Retrieve streaming providers for a specific TV show by providing its title and optional country code, helping users locate where to watch content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country_code | No | 可选的国家/地区代码,如"US"、"CN"等,默认为"US" | |
show_title | Yes | 剧集名称,如"怪奇物语"、"绝命毒师"等 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"country_code": {
"description": "可选的国家/地区代码,如\"US\"、\"CN\"等,默认为\"US\"",
"type": "string"
},
"show_title": {
"description": "剧集名称,如\"怪奇物语\"、\"绝命毒师\"等",
"type": "string"
}
},
"required": [
"show_title"
],
"type": "object"
}