GET Overhead Digital Signs
Returns all overhead digital signs.
Request Information
https://www.udottraffic.utah.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 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 | 
Response Formats
JSON
[
  {
    "Id": "UT--100082",
    "Name": "I-15 NB @ Milepost 0.28, STG",
    "Roadway": "I-15 NB",
    "DirectionOfTravel": "Northbound",
"Messages": [
    "<MSG>ALL WATERCRAFT<BR/>MUST EXIT AT<BR/>PORT OF ENTRY</MSG>"
],
    "Latitude": 37.004178,
    "Longitude": -113.618146,
    "LastUpdated": 1686328502
},
{
    "Id": "UT--100107",
    "Name": "I-80 WB @ Jeremy Ranch / MP 142.93, SU",
    "Roadway": "I-80 WB",
    "DirectionOfTravel": "Westbound",
"Messages": [
    "<MSG>MINUTES TO<BR/>SLC                 16<BR/>SLC AIRPORT    26</MSG>"
],
    "Latitude": 40.75082,
    "Longitude": -111.565787,
    "LastUpdated": 1686328502
}
]
                            XML
<MessageSignsList>
    <MessageSigns>
        <Id>UT--100082</Id>
        <Name>I-15 NB @ Milepost 0.28, STG</Name>
        <Roadway>I-15 NB</Roadway>
        <DirectionOfTravel>Northbound</DirectionOfTravel>
<Messages>
        <Messages><MSG>ALL WATERCRAFT<BR/>MUST EXIT AT<BR/>PORT OF ENTRY</MSG></Messages>
</Messages>
        <Latitude>37.004178</Latitude>
        <Longitude>-113.618146</Longitude>
        <LastUpdated>1686328804</LastUpdated>
</MessageSigns>
<MessageSigns>
        <Id>UT--100107</Id>
        <Name>I-80 WB @ Jeremy Ranch / MP 142.93, SU</Name>
        <Roadway>I-80 WB</Roadway>
        <DirectionOfTravel>Westbound</DirectionOfTravel>
<Messages>
        <Messages><MSG>MINUTES TO<BR/>SLC 16<BR/>SLC AIRPORT 25</MSG></Messages>
</Messages>
        <Latitude>40.75082</Latitude>
        <Longitude>-111.565787</Longitude>
        <LastUpdated>1686328804</LastUpdated>
</MessageSigns>
</MessageSignsList>