GET Message Signs
Returns all VMS.
Request Information
https://www.nvroads.com/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 message sign's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": "NV-DMS--D1-386",
"Name": "I-15 SB @ N OF W HARMON AVE - C",
"Roadway": "I-15",
"DirectionOfTravel": "Southbound",
"Messages": [
"I-215 4\nSILVERADO 7\nST ROSE 11"
],
"Latitude": 361.232147,
"Longitude": -1151.807785,
"LastUpdated": 1647846000
},
{
"Id": "NV-DMS--D1-76",
"Name": "I-15 SB Patrick",
"Roadway": "I-15",
"DirectionOfTravel": "Southbound",
"Messages": [
"I-15 TRAVEL TIME\nTO CALIFORNIA\nSTATELINE 32 MIN"
],
"Latitude": 360.800056,
"Longitude": -1151.808243,
"LastUpdated": 1647846000
}
]
XML
<MessageSignsList>
<MessageSigns>
<Id>NV-DMS--D1-386</Id>
<Name>I-15 SB @ N OF W HARMON AVE - C</Name>
<Roadway>I-15</Roadway>
<DirectionOfTravel>Southbound</DirectionOfTravel>
<Messages>
<Messages>I-215 4 SILVERADO 7 ST ROSE 11</Messages>
</Messages>
<Latitude>361.232147</Latitude>
<Longitude>-1151.807785</Longitude>
<LastUpdated>1647846000</LastUpdated>
</MessageSigns>
<MessageSigns>
<Id>NV-DMS--D1-76</Id>
<Name>I-15 SB Patrick</Name>
<Roadway>I-15</Roadway>
<DirectionOfTravel>Southbound</DirectionOfTravel>
<Messages>
<Messages>I-15 TRAVEL TIME TO CALIFORNIA STATELINE 32 MIN</Messages>
</Messages>
<Latitude>360.800056</Latitude>
<Longitude>-1151.808243</Longitude>
<LastUpdated>1647846000</LastUpdated>
</MessageSigns>
</MessageSignsList>