GET Temporary Workzones
Returns all temporary workzones.
Request Information
https://511.alaska.gov/api/v2/get/wzdxfielddevice
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. |
integer |
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 |
Name of the item. |
string |
AlertMessage |
Temporary workzones alert message |
string |
Roadway |
Roadway name |
string |
LastUpdated |
The date the item's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": 16124,
"Latitude": 38.0212725,
"Longitude": -78.538982,
"Name": "maintenance",
"AlertMessage": "Road assistance vehicle on scene",
"Roadway": "38.0212725000000000, -78.5389820000000000",
"LastUpdated": 1750939926
},
{
"Id": 16136,
"Latitude": 37.3239752,
"Longitude": -80.0343117,
"Name": "maintenance",
"AlertMessage": "Road assistance vehicle on scene",
"Roadway": "North Electric Road",
"LastUpdated": 1750946021
}
]
XML
<WZDXFieldDeviceList>
<WZDXFieldDevice>
<Id>16124</Id>
<Latitude>38.0212725</Latitude>
<Longitude>-78.538982</Longitude>
<Name>maintenance</Name>
<AlertMessage>Road assistance vehicle on scene</AlertMessage>
<Roadway>38.0212725000000000, -78.5389820000000000</Roadway>
<LastUpdated>1750939926</LastUpdated>
</WZDXFieldDevice>
<WZDXFieldDevice>
<Id>16136</Id>
<Latitude>37.3239752</Latitude>
<Longitude>-80.0343117</Longitude>
<Name>maintenance</Name>
<AlertMessage>Road assistance vehicle on scene</AlertMessage>
<Roadway>North Electric Road</Roadway>
<LastUpdated>1750946021</LastUpdated>
</WZDXFieldDevice>
</WZDXFieldDeviceList>