List Event Facilities
spothero.event-facilities
Fetch all parking facilities with coordinates, prices, and availability for a SpotHero event in one call.
Request
curl -X POST https://data.upscrape.com/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":{"event_id":2814805},"capability":"spothero.event-facilities"}'
Input
| Field | Type | Required | Description |
|---|---|---|---|
event_id
| integer | optional | SpotHero event ID (alternative to event_url). |
event_url
| string | optional | SpotHero event page URL containing ?id=<event_id>. |
Output
| Field | Type | Required | Description |
|---|---|---|---|
event_id
| integer | required | SpotHero event ID. |
facilities
| array<object> | required | All parking facilities near the venue. |
facilities[].address
| string | required | Street address. |
facilities[].available
| boolean | required | Whether spots are currently available. |
facilities[].base_price
| number | null | optional | Cheapest advertised (base) price in dollars. |
facilities[].facility_id
| integer | required | SpotHero facility ID. |
facilities[].facility_type
| string | required | Type of facility (e.g. garage, lot, valet). |
facilities[].lat
| number | required | Latitude. |
facilities[].lon
| number | required | Longitude. |
facilities[].title
| string | required | Facility name. |
facilities[].total_price
| number | null | optional | Cheapest total price including fees in dollars. |
facilities[].walking_meters
| integer | required | Walking distance to venue in meters. |
scraped_at
| string | required | ISO 8601 timestamp of when the data was scraped. |
venue_lat
| number | required | Latitude of the event venue. |
venue_lon
| number | required | Longitude of the event venue. |