GET Message Signs
Returns all overhead digital signs.
Request Information
https://nc.prod.traveliq.co//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 overhead digital sign. It will contain a fairly good description of the location where the overhead digital sign is deployed. |
string |
Roadway |
The roadway which this overhead digital 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 overhead digital 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 overhead digital sign's details were last updated in Unix time. More information |
integer |
County |
The county of message sign. |
string |
Response Formats
JSON
[
{
"Id": "ATMS_DMS--1",
"Name": "D1-NC12-40N_ATLANTIC",
"Roadway": "NC-12-N-A",
"DirectionOfTravel": "None",
"Messages": [
"NO_MESSAGE"
],
"Latitude": 35.58341,
"Longitude": -75.46699,
"LastUpdated": 1738787679,
"County": "Dare"
},
{
"Id": "ATMS_DMS--2",
"Name": "D1-NC12-85.5N_POINT",
"Roadway": "NC-12-N-B",
"DirectionOfTravel": "None",
"Messages": [
"NO_MESSAGE"
],
"Latitude": 35.106884,
"Longitude": -75.971489,
"LastUpdated": 1742934508,
"County": "Hyde"
}
]
XML
<MessageSignsList>
<MessageSigns>
<Id>ATMS_DMS--1</Id>
<Name>D1-NC12-40N_ATLANTIC</Name>
<Roadway>Unknown</Roadway>
<DirectionOfTravel>None</DirectionOfTravel>
<Messages>
<Messages>NO_MESSAGE</Messages>
</Messages>
<Latitude>35.583408</Latitude>
<Longitude>-75.466992</Longitude>
<LastUpdated>1742937804</LastUpdated>
<County>Dare</County>
</MessageSigns>
<MessageSigns>
<Id>ATMS_DMS--2</Id>
<Name>D1-NC12-85.5N_POINT</Name>
<Roadway>Unknown</Roadway>
<DirectionOfTravel>None</DirectionOfTravel>
<Messages>
<Messages>NO_MESSAGE</Messages>
</Messages>
<Latitude>35.106884</Latitude>
<Longitude>-75.971489</Longitude>
<LastUpdated>1742937804</LastUpdated>
<County>Dare</County>
</MessageSigns>
</MessageSignsList>