GET Truck Parking Availability
Returns all park and rides.
Request Information
https://fl511.com/api/v2/get/parking
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
Developer Key |
string |
Required |
| format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
| lang |
Valid values are 'en' or 'fr', default 'en'. |
string |
Optional |
Response Information
Resource Description
| Name | Description | Type |
|---|---|---|
| Id |
A unique identifier. |
integer |
| FacilityName |
|
string |
| Roadway |
Roadway name |
string |
| Direction |
Direction of parking. |
string |
| TotalParkingSpaces |
Total parking spaces |
string |
| AvailableParkingSpaces |
Available parking spaces. |
string |
| Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
| Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
Response Formats
JSON
[
{
"Id": 1,
"Description": "Meadville Area PA 198 and Interstate 79 Exit 154",
"Route": "I 79",
"Exit": "154 Saegertown",
"TotalParkingSpaces": "20",
"AvailableParkingSpaces": null,
"HandicappedParkingSpaces": "2",
"Latitude": 41.7161,
"Longitude": -80.1997
},
{
"Id": 2,
"Description": "West Middlesex / Wheatland Area PA 318 at Interstate 376 Exit 1C",
"Route": "I 376",
"Exit": "1C W Middlesex Mercer",
"TotalParkingSpaces": "24",
"AvailableParkingSpaces": null,
"HandicappedParkingSpaces": "2",
"Latitude": 41.178222,
"Longitude": -80.438946
}
]
XML
<ParkingList>
<Parking>
<Id>1</Id>
<Description>Meadville Area PA 198 and Interstate 79 Exit 154</Description>
<Route>I 79</Route>
<Exit>154 Saegertown</Exit>
<TotalParkingSpaces>20</TotalParkingSpaces>
<AvailableParkingSpaces/>
<HandicappedParkingSpaces>2</HandicappedParkingSpaces>
<Latitude>41.7161</Latitude>
<Longitude>-80.1997</Longitude>
</Parking>
<Parking>
<Id>2</Id>
<Description>West Middlesex / Wheatland Area PA 318 at Interstate 376 Exit 1C</Description>
<Route>I 376</Route>
<Exit>1C W Middlesex Mercer</Exit>
<TotalParkingSpaces>24</TotalParkingSpaces>
<AvailableParkingSpaces/>
<HandicappedParkingSpaces>2</HandicappedParkingSpaces>
<Latitude>41.178222</Latitude>
<Longitude>-80.438946</Longitude>
</Parking>
</ParkingList>