get_now_showing
Find movies currently playing in your area by entering your city or ZIP code to see available showtimes and film listings.
Instructions
Returns a list of movies currently showing in a given city or ZIP code.
Args: location: City, state or ZIP code (e.g., "Boston, MA")
Returns: JSON string with list of movies
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location | Yes |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}