GET Cameras
Returns all cameras.
Request Information
https://az511.com/api/v2/get/cameras
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. |
integer |
Source |
The name of the source that provided this camera. |
string |
Roadway |
The roadway on which this camera is located. |
string |
Direction |
The wind direction at the time of reported maximum wind speed over the last 10 minutes |
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 |
Location |
The location of the camera. |
string |
Views |
Views of a camera. |
string |
Response Formats
JSON
[
{
"Id": 1,
"Source": "AZDOT",
"Roadway": "SR-95",
"Direction": "Unknown",
"Latitude": 35.1647820000001,
"Longitude": -114.566208,
"Location": "SR-95 @Airport Center",
"Views": [
{
"Id": 1,
"Url": "https://az511.com/map/Cctv/1",
"Status": "Enabled",
"Description": "SR-95 NB 249.20 @Airport Center"
}
]
},
{
"Id": 2,
"Source": "AZDOT",
"Roadway": "SR-95",
"Direction": "Unknown",
"Latitude": 35.056408,
"Longitude": -114.589338,
"Location": "SR-95 @BH Parkway",
"Views": [
{
"Id": 2,
"Url": "https://az511.com/map/Cctv/2",
"Status": "Enabled",
"Description": "SR-95 NB 240.60 @BH Parkway"
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>1</Id>
<Source>AZDOT</Source>
<Roadway>SR-95</Roadway>
<Direction>Unknown</Direction>
<Latitude>35.1647820000001</Latitude>
<Longitude>-114.566208</Longitude>
<Location>SR-95 @Airport Center</Location>
<Views>
<View>
<Id>1</Id>
<Url>https://az511.com/map/Cctv/1</Url>
<Status>Enabled</Status>
<Description>SR-95 NB 249.20 @Airport Center</Description>
</View>
</Views>
</Cameras>
<Cameras>
<Id>2</Id>
<Source>AZDOT</Source>
<Roadway>SR-95</Roadway>
<Direction>Unknown</Direction>
<Latitude>35.056408</Latitude>
<Longitude>-114.589338</Longitude>
<Location>SR-95 @BH Parkway</Location>
<Views>
<View>
<Id>2</Id>
<Url>https://az511.com/map/Cctv/2</Url>
<Status>Enabled</Status>
<Description>SR-95 NB 240.60 @BH Parkway</Description>
</View>
</Views>
</Cameras>
<CamerasList>