GET Inspection Stations API Documentation
Returns all inspection stations.
Request Information
https://511.alberta.ca/api/v2/get/inspectionstations
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| 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 |
Facility Name |
string |
| Description |
Description of Inspection Station |
string |
| LocationType |
Location Type |
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
[
{
"Id": 12264,
"FacilityName": "RSF631",
"Description": "HIGHWAY 1:06 EASTBOUND VEHICLE INSPECTION STATION",
"LocationType": "OUTSIDE RIGHT",
"Latitude": 51.1070630630627,
"Longitude": -114.63138498987
},
{
"Id": 12265,
"FacilityName": "RSF706",
"Description": "HIGHWAY 43:03 GRANDE PRAIRIE VEHICLE INSPECTION STATION",
"LocationType": "",
"Latitude": 55.223693223328,
"Longitude": -118.798956236324
}
]
<InspectionStationsList>
<InspectionStations>
<Id>12264</Id>
<FacilityName>RSF631</FacilityName>
<Description>HIGHWAY 1:06 EASTBOUND VEHICLE INSPECTION STATION</Description>
<LocationType>OUTSIDE RIGHT</LocationType>
<Latitude>51.1070630630627</Latitude>
<Longitude>-114.63138498987</Longitude>
</InspectionStations>
<InspectionStations>
<Id>12265</Id>
<FacilityName>RSF706</FacilityName>
<Description>HIGHWAY 43:03 GRANDE PRAIRIE VEHICLE INSPECTION STATION</Description>
<LocationType/>
<Latitude>55.223693223328</Latitude>
<Longitude>-118.798956236324</Longitude>
</InspectionStations>
</InspectionStationsList>