search_shows
Search for TV shows and movies on MyShows using keywords, with optional filters for year and pagination to find specific content.
Instructions
Searches for TV shows/movies on MyShows by a query and optional year. :param query: The search query string. :param year: Optional year to filter the search results. :param page: The page number to retrieve (default is 0). :return: A dictionary containing the search results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
query | Yes | ||
year | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 0,
"title": "Page",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year"
}
},
"required": [
"query"
],
"type": "object"
}