GET Express Lanes
Returns all express lanes.
Request Information
https://511ga.org/api/v2/get/expresslanes
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
Developer Key |
string |
Required |
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
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 |
Name |
The name of the express lane section. |
string |
Status |
The direction of the express lane. |
string |
Description |
The current state of the express lanes. |
string |
Rotation |
Angle of the icon. |
string |
LastUpdated |
The date the item's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": "75A",
"Latitude": 33.238164,
"Longitude": -84.081919,
"Name": "I-75 South Metro Express Lanes",
"Status": "Northbound",
"Description": "I-75 South Metro Express Lanes are Open Northbound",
"Rotation": "-15",
"LastUpdated": 1625500260
},
{
"Id": "75B",
"Latitude": 33.937741,
"Longitude": -84.499214,
"Name": "I-75 North Metro Express Lanes",
"Status": "Southbound",
"Description": "I-75 North Metro Express Lanes are in transition to Closed",
"Rotation": "128",
"LastUpdated": 1625500260
}
]
XML
<ExpressLanesList>
<ExpressLanes>
<Id>75A</Id>
<Latitude>33.238164</Latitude>
<Longitude>-84.081919</Longitude>
<Name>I-75 South Metro Express Lanes</Name>
<Status>Northbound</Status>
<Description>I-75 South Metro Express Lanes are Open Northbound</Description>
<Rotation>-15</Rotation>
<LastUpdated>1625500640</LastUpdated>
</ExpressLanes>
<ExpressLanes>
<Id>75B</Id>
<Latitude>33.937741</Latitude>
<Longitude>-84.499214</Longitude>
<Name>I-75 North Metro Express Lanes</Name>
<Status>Southbound</Status>
<Description>I-75 North Metro Express Lanes are in transition to Closed</Description>
<Rotation>128</Rotation>
<LastUpdated>1625500640</LastUpdated>
</ExpressLanes>
</ExpressLanesList>