get_showtimes
Find available movie showtimes by entering a movie ID, date, and location to get current screening schedules for planning your cinema visit.
Instructions
Fetches available showtimes for a specific movie and location.
Args: movie_id: Movie ID (e.g., "mv001") date: Date in YYYY-MM-DD format (e.g., "2025-10-28") location: City, state or ZIP code
Returns: JSON string with available showtimes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| movie_id | Yes | ||
| date | Yes | ||
| location | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
},
"location": {
"type": "string"
},
"movie_id": {
"type": "string"
}
},
"required": [
"movie_id",
"date",
"location"
],
"type": "object"
}