Upscrape 2.0 is here. Live platform data for agents, apps, and workflows. Upscrape 2.0 is here. REST API and MCP, one connection. Explore capabilities

SpotHero scraper API

Read-only SpotHero parking data: event search, venue/destination lookup, parking facility listing, and exact lot price…

Events & parking 4 capabilities stable 100.0% success rate

Capabilities

Every capability is one POST /execute call that returns structured JSON.

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>.

Look up parking price and availability for a specific lot at a SpotHero event, matched by lot name or facility ID.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"event_url":"https://spothero.com/events/united-center-events?id=2814805","lot":"United Center Parking"},"capability":"spothero.lookup"}'

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>.
facility_id integer optional SpotHero facility ID (bypasses name matching; alternative to lot).
lot string optional Parking lot name for fuzzy matching (required if facility_id is not set).
start_time string optional Override start time in ISO 8601 format; defaults to event parking window start.

Search SpotHero for events by name or destination, returning event IDs, times, and venue info.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"query":"Chicago Bulls"},"capability":"spothero.search"}'

Input

Field Type Required Description
destination_id integer optional SpotHero destination/venue ID to list events at (e.g. 79050 for SoFi Stadium).
query string optional Event name to search (e.g. 'Bruno Mars', 'Chicago Bulls').

Search SpotHero for destinations/venues by name, returning destination IDs, cities, and coordinates.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"query":"Madison Square Garden"},"capability":"spothero.venues"}'

Input

Field Type Required Description
query string required Venue or destination name to search (e.g. 'SoFi Stadium', 'Madison Square Garden').

Run SpotHero in under a minute

Sign in, create an API key, and try any capability in the playground before you write code.

Get an API key