get_movie_show_by_id
Retrieve detailed information about a specific movie or TV show using its MyShows ID, including episode lists and season counts for comprehensive viewing management.
Instructions
Retrieves a show or movie by its MyShows ID. :param myshows_item_id: The MyShows ID of the show or movie to retrieve. :return: A dictionary containing the show's details, including episodes and season counts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
myshows_item_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"myshows_item_id": {
"title": "Myshows Item Id",
"type": "integer"
}
},
"required": [
"myshows_item_id"
],
"type": "object"
}