GET Message Signs
Returns all VMS.
Request Information
https://511wi.gov/api/v2/get/messagesigns
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 |
Name |
A name assigned to the message sign. It will contain a fairly good description of the location where the message sign is deployed. |
string |
Roadway |
The roadway which this message sign is on. |
string |
DirectionOfTravel |
One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
string |
Messages |
An collection of the messages which are currently rotating on the message sign. |
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 |
LastUpdated |
The date the messagesign's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[ { "Id": "MILWAUKEE--1076", "Name": "I-41/94 SB at College Ave", "Roadway": "I-41/I-94", "DirectionOfTravel": "Southbound", "Messages": [ "\tMILES MIN\nHWY 20 \t14 14\nHWY 142 \t22 21" ], "Latitude": 42.928162, "Longitude": -87.935387, "LastUpdated": 1580847309 }, { "Id": "MILWAUKEE--1426", "Name": "I-94 EB at 190th St", "Roadway": "I-94", "DirectionOfTravel": "Eastbound", "Messages": [ "NO_MESSAGE" ], "Latitude": 44.94031, "Longitude": -92.413617, "LastUpdated": 1580847302 } ]
XML
<MessageSignsList> <MessageSigns> <Id>MILWAUKEE--1076</Id> <Name>I-41/94 SB at College Ave</Name> <Roadway>I-41/I-94</Roadway> <DirectionOfTravel>Southbound</DirectionOfTravel> <Messages> <Messages> MILES MIN HWY 20 14 14 HWY 142 22 20</Messages> </Messages> <Latitude>42.928162</Latitude> <Longitude>-87.935387</Longitude> <LastUpdated>1580847429</LastUpdated> </MessageSigns> <MessageSigns> <Id>MILWAUKEE--1426</Id> <Name>I-94 EB at 190th St</Name> <Roadway>I-94</Roadway> <DirectionOfTravel>Eastbound</DirectionOfTravel> <Messages> <Messages>NO_MESSAGE</Messages> </Messages> <Latitude>44.94031</Latitude> <Longitude>-92.413617</Longitude> <LastUpdated>1580847453</LastUpdated> </MessageSigns> </MessageSignsList>