GET Cameras
Returns all cameras.
Request Information
https://511ga.org/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 |
VideoUrl |
The URL to fetch the camera video. |
string |
Status |
The status of the camera. |
string |
Description |
Additional information about a camera. |
string |
Response Formats
JSON
[ { "Id": "ALPH-CAM-002--1", "Organization": "TestAgency", "RoadwayName": "SR 9", "DirectionOfTravel": "Westbound", "Latitude": 34.075607, "Longitude": -84.29459, "Name": "SR 9 at Academy St Milton Ave", "Url": "http://www.511ga.org/map/Cctv/ALPH-CAM-002--1", "VideoUrl": "https://vss1live.dot.ga.gov/lo/alph-cam-002.stream/playlist.m3u8", "Status": "Enabled", "Description": "" }, { "Id": "ALPH-CAM-003--1", "Organization": "TestAgency", "RoadwayName": "Milton Ave", "DirectionOfTravel": "Unknown", "Latitude": 34.075733, "Longitude": -84.29657, "Name": "Milton Ave at Canton St Roswell St", "Url": "http://www.511ga.org/map/Cctv/ALPH-CAM-003--1", "VideoUrl": "https://vss1live.dot.ga.gov/lo/alph-cam-003.stream/playlist.m3u8", "Status": "Enabled", "Description": "" } ]
XML
<CamerasList> <Cameras> <Id>ALPH-CAM-002--1</Id> <Organization>TestAgency</Organization> <RoadwayName>SR 9</RoadwayName> <DirectionOfTravel>Westbound</DirectionOfTravel> <Latitude>34.075607</Latitude> <Longitude>-84.29459</Longitude> <Name>SR 9 at Academy St Milton Ave</Name> <Url>http://www.511ga.org/map/Cctv/ALPH-CAM-002--1</Url> <VideoUrl>https://vss1live.dot.ga.gov/lo/alph-cam-002.stream/playlist.m3u8</VideoUrl> <Status>Enabled</Status> <Description/> </Cameras> <Cameras> <Id>ALPH-CAM-003--1</Id> <Organization>TestAgency</Organization> <RoadwayName>Milton Ave</RoadwayName> <DirectionOfTravel>Unknown</DirectionOfTravel> <Latitude>34.075733</Latitude> <Longitude>-84.29657</Longitude> <Name>Milton Ave at Canton St Roswell St</Name> <Url>http://www.511ga.org/map/Cctv/ALPH-CAM-003--1</Url> <VideoUrl>https://vss1live.dot.ga.gov/lo/alph-cam-003.stream/playlist.m3u8</VideoUrl> <Status>Enabled</Status> <Description/> </Cameras> </CamerasList>