Search Page
Adding query parameters to the base ParkWhiz url enables routing to pre-filtered search results.
#
RoutingChanging the route allows for greater customization of what visual content is returned on the search page. Some query parameters will require the use of an additional route to function properly.
#
Destination TitleTo change the destination title within the location listing (i.e. the “Parking Near [Location]” title), add the route /destination/{name}
, with name
being a dash or space separated, capitalized phrase of your choice.
warning
Entirely lowercase titles separated with dashes will result in the page redirecting to a 404.
#
Query ParametersParameter | Type | Description | Requires Destination Title Route |
---|---|---|---|
coupon | String | Coupon code, auto-applied at checkout | x |
end | ISO 8601 Timestamp | Parking End Time, with offset | ✓ |
lat | Float | The latitude of the destination | ✓ |
lng | Float | The longitude of the destination | ✓ |
location_id | List[Integer] | Arrive Location ID(s) | ✓ |
pwa | String | Affiliate Code | x |
seller_id | List[Integer] | Arrive Seller ID(s) | ✓ |
start | ISO 8601 Timestamp | Parking Start Time, with offset | ✓ |
tm_event_id | String | Ticketmaster Event ID | x |
#
Affiliate and CouponUse these options to attribute purchases from the web link to your partner association. Both affiliate codes and coupons do not need to be paired with a destination title route and apply over all link types.
Affiliate codes must be used to track affiliate bookings and revenue in the Affiliate Portal transactional system. The affiliate code will look something similar to pa-23
or 5d849483
and can be found within the Affiliate Portal.
Parameter | Type | Description |
---|---|---|
coupon | String | Coupon code, auto-applied at checkout |
pwa | String | Affiliate Code |
#
GeolocationGeolocation options control the location in which to search parking. Without a start and/or end time inputted the search page will default to the current time, rounded to the nearest half hour, with a duration of 2 hours.
Parameter | Type | Description |
---|---|---|
lat | Float | The latitude of the destination |
lng | Float | The longitude of the destination |
Try It Out!
Parameter | Value |
---|---|
| |
| |
|
https://www.parkwhiz.com/destination/Chicago-Parking/?lat=41.875662&lng=-87.6297777
#
IDID options can filter what results show based on seller, destination, or event. Filtering off of an event does not require the Destination Title route.
Parameter | Type | Description |
---|---|---|
location_id | List[Integer] | Arrive Location ID(s) |
seller_id | List[Integer] | Arrive Seller ID(s) |
tm_event_id | String | Ticketmaster Event ID |
Try It Out!
Parameter | Value |
---|---|
| |
| |
| |
| |
| |
| |
|
https://www.parkwhiz.com/destination/Chicago-Parking/?start=2022-11-04T20:36:25.725Z&end=2022-11-04T23:36:25.725Z&location_id=4197&seller_id=602&lat=41.875662&lng=-87.6297777
#
TimeTime options filter what results show by when the user is looking to book parking. Time options must be used with a Destination Title route as well as the lat
and lng
query parameters.
info
Your start and end times should be formatted with offset, e.g. YYYY-MM-DDTHH:MM-HH:MM
Parameter | Type | Description |
---|---|---|
end | ISO 8601 Timestamp | Parking End Time, with offset |
start | ISO 8601 Timestamp | Parking Start Time, with offset |
Try It Out!
Parameter | Value |
---|---|
| |
| |
| |
| |
|
https://www.parkwhiz.com/destination/Chicago-Parking/?start=2022-11-04T20:36:25.726Z&end=2022-11-04T23:36:25.726Z&lat=41.875662&lng=-87.6297777