Note: Please enter all relevant restriction and permit information for every event.

GET Message Boards

Returns all VMS.

Request Information

https://az511.com/api/v2/get/messagesigns

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
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

Sample:
[
	{
		"Id": "AZ--4e03c74f-6856-469f-ae83-ae62c9498227",
		"Name": "L-202 EB @ 52nd St",
		"Roadway": "L-202",
		"DirectionOfTravel": "Eastbound",
		"Messages": [
			"MINUTES TO\r\nL-101            6\r\nL-101/US-60      9"
		],
		"Latitude": 33.455615,
		"Longitude": -111.973848,
		"LastUpdated": 1580761737
	},
	{
		"Id": "AZ--ac9bfb6f-83da-4d95-968e-dfa18ab052ed",
		"Name": "L-202 WB @ Center Pkwy",
		"Roadway": "L-202",
		"DirectionOfTravel": "Westbound",
		"Messages": [
			"MINUTES TO\r\nSR-51 HIGHLAND  10\r\nI-10  7TH ST     8"
		],
		"Latitude": 33.435694,
		"Longitude": -111.940381,
		"LastUpdated": 1580761737	
	}
]

XML

Sample:
<MessageSignsList>
	<MessageSigns>
		<Id>AZ--4e03c74f-6856-469f-ae83-ae62c9498227</Id>
		<Name>L-202 EB @ 52nd St</Name>
		<Roadway>L-202</Roadway>
		<DirectionOfTravel>Eastbound</DirectionOfTravel>
		<Messages>
			<Messages>MINUTES TO L-101 6 L-101/US-60 9</Messages>
		</Messages>
		<Latitude>33.455615</Latitude>
		<Longitude>-111.973848</Longitude>
		<LastUpdated>1580761497</LastUpdated>
	</MessageSigns>
	<MessageSigns>
		<Id>AZ--ac9bfb6f-83da-4d95-968e-dfa18ab052ed</Id>
		<Name>L-202 WB @ Center Pkwy</Name>
		<Roadway>L-202</Roadway>
		<DirectionOfTravel>Westbound</DirectionOfTravel>
		<Messages>
			<Messages>MINUTES TO SR-51 HIGHLAND 10 I-10 7TH ST 8</Messages>
		</Messages>
		<Latitude>33.435694</Latitude>
		<Longitude>-111.940381</Longitude>
		<LastUpdated>1580761497</LastUpdated>
	</MessageSigns>
</MessageSignsList>