get_seat_map
View available and reserved seating arrangements for AMC movie showtimes to help select seats for booking.
Instructions
Displays available and reserved seats for a specific showtime.
Args: showtime_id: Showtime ID (e.g., "st001")
Returns: JSON string with seat availability map
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| showtime_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"showtime_id": {
"type": "string"
}
},
"required": [
"showtime_id"
],
"type": "object"
}