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. |
string |
Organization |
The name of the organization that provided this camera. |
string |
RoadwayName |
The roadway on which this camera is located. |
string |
DirectionOfTravel |
One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
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 |
Name |
A name assigned to the camera. It will contain a fairly good description of the location where the camera is deployed. |
string |
Url |
The URL to fetch the camera image. |
string |
Status |
The status of the camera. |
string |
Description |
Additional information about a camera. |
string |
Response Formats
JSON
[
{
"Id": "1--14",
"Organization": "VOD",
"RoadwayName": "I-10",
"DirectionOfTravel": "Westbound",
"Latitude": 33.462159007,
"Longitude": -112.266989393,
"Name": "I-10 WB 134.02 @L-101W",
"Url": "https://az511.com/map/Cctv/1--14",
"Status": "Enabled",
"Description": "I-10 @ 134.02"
},
{
"Id": "10--14",
"Organization": "VOD",
"RoadwayName": "I-10",
"DirectionOfTravel": " ",
"Latitude": 33.461802171,
"Longitude": -112.099220629,
"Name": "I-10 M 143.73 @19th Ave",
"Url": "https://az511.com/map/Cctv/10--14",
"Status": "Enabled",
"Description": "I-10 @ 143.73"
}
]
XML
<CamerasList>
<Cameras>
<Id>1--14</Id>
<Organization>VOD</Organization>
<RoadwayName>I-10</RoadwayName>
<DirectionOfTravel>Westbound</DirectionOfTravel>
<Latitude>33.462159007</Latitude>
<Longitude>-112.266989393</Longitude>
<Name>I-10 WB 134.02 @L-101W</Name>
<Url>https://az511.com/map/Cctv/1--14</Url>
<Status>Enabled</Status>
<Description>I-10 @ 134.02</Description>
</Cameras>
<Cameras>
<Id>10--14</Id>
<Organization>VOD</Organization>
<RoadwayName>I-10</RoadwayName>
<DirectionOfTravel> </DirectionOfTravel>
<Latitude>33.461802171</Latitude>
<Longitude>-112.099220629</Longitude>
<Name>I-10 M 143.73 @19th Ave</Name>
<Url>https://az511.com/map/Cctv/10--14</Url>
<Status>Enabled</Status>
<Description>I-10 @ 143.73</Description>
</Cameras>
</CamerasList>