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. |
integer |
Source |
The name of the source that provided this camera. |
string |
SourceId |
The source id of the 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 |
SortOrder |
|
integer |
Views |
Display all camera views. |
object |
Response Formats
JSON
[
{
"Id": 1,
"Source": "IBI_QA ",
"SourceId": "0sacj5ojwvx",
"Roadway": "TestRoadway",
"Direction": "Unknown",
"Latitude": 34.075607,
"Longitude": -84.29459,
"Location": "TEST-1",
"Views": [
{
"Id": 3409,
"Url": "https://www.511ga.org/map/Cctv/3409",
"Status": "Enabled",
"Description": "TEST-2",
"VideoUrl": "https://vss1live.dot.ga.gov/lo/alph-cam-002.stream/playlist.m3u8",
"SortId": 6788
}
]
},
{
"Id": 2,
"Source": "IBI_QA ",
"SourceId": "0wq5rtw0sdu",
"Roadway": "SR-6 Test",
"Direction": "Unknown",
"Latitude": 34.071262,
"Longitude": -84.29672,
"Location": "SR 9 at SR 120",
"Views": [
{
"Id": 3410,
"Url": "https://www.511ga.org/map/Cctv/3410",
"Status": "Disabled",
"Description": "Test: Agency SR 9 at SR 120 ",
"VideoUrl": "https://vss1live.dot.ga.gov/lo/alph-cam-006.stream/playlist.m3u8",
"SortId": 0
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>1</Id>
<Source>IBI_QA </Source>
<SourceId>0sacj5ojwvx</SourceId>
<Roadway>TestRoadway</Roadway>
<Direction>Unknown</Direction>
<Latitude>34.075607</Latitude>
<Longitude>-84.29459</Longitude>
<Location>TEST-1</Location>
<Views>
<View>
<Id>3409</Id>
<Url>https://www.511ga.org/map/Cctv/3409</Url>
<Status>Enabled</Status>
<Description>TEST-2</Description>
<VideoUrl>https://vss1live.dot.ga.gov/lo/alph-cam-002.stream/playlist.m3u8</VideoUrl>
<SortId>6788</SortId>
</View>
</Views>
</Cameras>
<Cameras>
<Id>2</Id>
<Source>IBI_QA </Source>
<SourceId>0wq5rtw0sdu</SourceId>
<Roadway>SR-6 Test</Roadway>
<Direction>Unknown</Direction>
<Latitude>34.071262</Latitude>
<Longitude>-84.29672</Longitude>
<Location>SR 9 at SR 120</Location>
<Views>
<View>
<Id>3410</Id>
<Url>https://www.511ga.org/map/Cctv/3410</Url>
<Status>Disabled</Status>
<Description>Test: Agency SR 9 at SR 120 </Description>
<VideoUrl>https://vss1live.dot.ga.gov/lo/alph-cam-006.stream/playlist.m3u8</VideoUrl>
<SortId>0</SortId>
</View>
</Views>
</Cameras>
</CamerasList>