Capabilities
Every capability is one POST /execute
call that returns structured JSON.
Fetch all parking locations with coordinates, prices, and availability for a ParkWhiz event.
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":"parkwhiz.event-quotes"}'
Input
|
Field
|
Type
|
Required
|
Description
|
event_id
|
integer
|
optional
|
ParkWhiz event ID
|
event_url
|
string
|
optional
|
ParkWhiz event URL
|
Search ParkWhiz for events by name or venue ID.
Request
curl -X POST https://data.upscrape.com/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":{"query":"Bruno Mars"},"capability":"parkwhiz.search-events"}'
Input
|
Field
|
Type
|
Required
|
Description
|
query
|
string
|
optional
|
Event name to search (e.g. 'Bruno Mars')
|
venue_id
|
integer
|
optional
|
ParkWhiz venue ID to list events for
|
Search ParkWhiz for venues by name.
Request
curl -X POST https://data.upscrape.com/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":{"query":"SoFi Stadium"},"capability":"parkwhiz.search-venues"}'
Input
|
Field
|
Type
|
Required
|
Description
|
query
|
string
|
required
|
Venue name to search (e.g. 'SoFi Stadium')
|
Find the cheapest parking option for a ParkWhiz event by event URL or ID and address, using exact location match or fuzzy address matching.
Request
curl -X POST https://data.upscrape.com/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":{"address":"1901 W Madison St","event_url":"https://www.parkwhiz.com/p/united-center-parking/1000-w-madison-st-chicago-il-60612/?event_id=2814805/"},"capability":"parkwhiz.smart-lookup"}'
Input
|
Field
|
Type
|
Required
|
Description
|
address
|
string
|
required
|
Parking lot address for fuzzy matching (e.g. '1901 W Madison St')
|
event_id
|
integer
|
optional
|
ParkWhiz event ID (alternative to event_url)
|
event_url
|
string
|
optional
|
ParkWhiz event page URL (e.g. https://www.parkwhiz.com/p/united-center-parking/.../?event_id=2814805/)
|
location_id
|
integer
|
optional
|
ParkWhiz location ID for exact match (optional, skips address resolution)
|
Run ParkWhiz 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