ParkWhiz API: All Parking Locations
Get a list of all parking locations accepting ParkWhiz reservations on a regular basis.
Request
http://api.parkwhiz.com/parking/reservation/ GET
Parameters
Required parameters are bold.
| Field | Type | Description |
|---|---|---|
| key | string | ParkWhiz public API key |
Example call
http://api.parkwhiz.com/parking/reservation/?key=62d882d8cfe5680004fa849286b6ce20
Returns (array)
| Field | Type | Description |
|---|---|---|
| location_name | string | The display name of the parking location |
| location_id | integer | ID number of the parking location |
| parkwhiz_url | string | URL of this location on ParkWhiz.com |
| address | string | Street address of the parking location |
| city | string | City of the parking location |
| state | string | US state or Canadian province of the parking location |
| zip | string | Zip code of the parking location |
| lat | float | Latitude of the parking location |
| lng | float | Latitude of the parking location |
| eticket | bool | Whether the location accepts mobile parking passes |
| directions | string | Driving directions to the parking location, HTML formatted |
| description | string | A description of the parking location, HTML formatted |
| recommendations | integer | Number of ParkWhiz customers who gave this location positive feedback |
Example response
[
{
"location_name": "Cowboys Gameday Parking",
"location_id": 2429,
"parkwhiz_url": "http:\/\/www.parkwhiz.com\/p\/arlington-parking\/601-stadium-dr\/",
"address": "601 Stadium Dr",
"city": "Arlington",
"state": "TX",
"zip": "76011",
"lat": 32.7427399,
"lng": -97.083716,
"eticket": 1,
"directions": "From 360: West on Division...",
"description": "This is a private lot located at Stadium Drive and Division that is...",
"recommendations": 63
},
{
"location_name": "Best Cowboys Parking",
"location_id": 2724,
"parkwhiz_url":"http:\/\/www.parkwhiz.com\/p\/arlington-parking\/601-stadium-dr\/",
"address": "601 Stadium Dr",
"city": "Arlington",
"state": "TX",
"zip": "76011",
"lat": 32.7427399,
"lng": -97.083716,
"eticket": 0,
"directions": "From 360: West on Division...",
"description": "This is a private lot located at Stadium Drive and Division that is...",
"recommendations": 63
},
...]