GET Bridge Restrictions API Documentation

Returns all bridge restrictions.

Request Information

https://511.alberta.ca/api/v2/get/bridgerestrictionpoi

URI Parameters

URI Parameters
NameDescriptionTypeAdditional 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


Resource Description
NameDescriptionType
Id

A unique identifier.

integer
Roadway

Roadway name

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
UnderHeightClear

Vertical clearance in meters under a bridge

string

Response Formats

JSON
Sample:
[
  {
    "Id": 14401,
    "Roadway": "811",
    "Latitude": 49.73106,
    "Longitude": -113.397603,
    "UnderHeightClear": null
  },
  {
    "Id": 14402,
    "Roadway": "21",
    "Latitude": 53.604053,
    "Longitude": -113.245842,
    "UnderHeightClear": null
  }
]
XML
Sample:
<BridgeRestrictionPoiList>
 <BridgeRestrictionPoi>
  <Id>14401</Id>
  <Roadway>811</Roadway>
  <Latitude>49.73106</Latitude>
  <Longitude>-113.397603</Longitude>
  <UnderHeightClear/>
 </BridgeRestrictionPoi>
 <BridgeRestrictionPoi>
  <Id>14402</Id>
  <Roadway>21</Roadway>
  <Latitude>53.604053</Latitude>
  <Longitude>-113.245842</Longitude>
  <UnderHeightClear/>
 </BridgeRestrictionPoi>
<BridgeRestrictionPoiList>