subway_available_times
Retrieve a Subway store's remaining pickup time slots for today by store ID. Returns RFC3339 UTC times with interval minutes, or an empty list when closed—clear capacity checks.
Instructions
Get one Subway store's available pickup times. Returns one Subway store's forward-looking pickup schedule -- every time slot the store is currently accepting orders for, as RFC3339 UTC instants, earliest first. Slots begin at the store's next orderable time (roughly half an hour out, not immediately) and run through closing, so the list reflects real remaining capacity for today rather than the store's advertised opening hours. Store IDs come from a GET /subway/store or GET /subway/nearby result's store_id field. A store that is closed or past its last slot for the day returns an empty slots array, which is a valid answer rather than an error. interval_minutes reports the spacing between consecutive slots as measured from the response itself.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum slots to return (1-200). Defaults to every slot the store offers. | |
| store_id | Yes | Store ID from a /subway/store or /subway/nearby result's store_id |