get_media_status
Check the availability status of a movie or TV show by TMDB ID, indicating if it's available, processing, or needs a request. Returns request details if any.
Instructions
Check the availability status of a movie or TV show.
Use search_media first to find the TMDB ID, then check its detailed status. Returns whether media is available, being processed, or needs to be requested.
Args: tmdb_id: TMDB ID of the movie or TV show (from search results) media_type: "movie" or "tv"
Returns: Status information including: - status: Numeric status code (1=Unknown, 2=Requested, 3=Processing, 4=Partially Available, 5=Available) - status_text: Human-readable status like "Available" or "Processing" - has_request: Whether any request exists for this media - request_status: Status of existing request ("Pending", "Approved", "Declined") - seasons_count: (TV only) Total number of seasons
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tmdb_id | Yes | ||
| media_type | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||