GET Cameras
Returns all cameras.
Request Information
https://511wi.gov/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 |
Given sort order for camera |
integer |
Views |
Display all camera views. |
object |
Region |
The name of the region where the camera is located. |
string |
County |
The name of the county where the camera is located. |
string |
Response Formats
JSON
[
{
"Id": 3,
"Source": "ATMS",
"SourceId": "10",
"Roadway": "I-41 ",
"Direction": "Unknown",
"Latitude": 44.299419,
"Longitude": -88.446465,
"Location": "I-41 at County A",
"SortOrder": 0,
"Views": [
{
"Id": 1450,
"Url": "https://511wi.gov/map/Cctv/1450",
"Status": "Enabled",
"Description": "",
"VideoUrl": "https://cctv1.dot.wi.gov:443/rtplive/CCTV-44-0081/playlist.m3u8"
}
],
"Region": "Northeast Region",
"County": "Outagamie"
},
{
"Id": 4,
"Source": "ATMS",
"SourceId": "100",
"Roadway": "I-94 ",
"Direction": "Unknown",
"Latitude": 44.842964,
"Longitude": -91.603446,
"Location": "I-94 at WIS 312",
"SortOrder": 0,
"Views": [
{
"Id": 1451,
"Url": "https://511wi.gov/map/Cctv/1451",
"Status": "Enabled",
"Description": "",
"VideoUrl": "https://cctv1.dot.wi.gov:443/rtplive/CCTV-18-0012/playlist.m3u8"
}
],
"Region": "Northwest Region",
"County": "Eau Claire"
}
]
XML
<CamerasList>
<Cameras>
<Id>3</Id>
<Source>ATMS</Source>
<SourceId>10</SourceId>
<Roadway>I-41 </Roadway>
<Direction>Unknown</Direction>
<Latitude>44.299419</Latitude>
<Longitude>-88.446465</Longitude>
<Location>I-41 at County A</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>1450</Id>
<Url>https://511wi.gov/map/Cctv/1450</Url>
<Status>Enabled</Status>
<Description/>
<VideoUrl>https://cctv1.dot.wi.gov:443/rtplive/CCTV-44-0081/playlist.m3u8</VideoUrl>
</View>
</Views>
<Region>Northeast Region</Region>
<County>Outagamie</County>
</Cameras>
<Cameras>
<Id>4</Id>
<Source>ATMS</Source>
<SourceId>100</SourceId>
<Roadway>I-94 </Roadway>
<Direction>Unknown</Direction>
<Latitude>44.842964</Latitude>
<Longitude>-91.603446</Longitude>
<Location>I-94 at WIS 312</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>1451</Id>
<Url>https://511wi.gov/map/Cctv/1451</Url>
<Status>Enabled</Status>
<Description/>
<VideoUrl>https://cctv1.dot.wi.gov:443/rtplive/CCTV-18-0012/playlist.m3u8</VideoUrl>
</View>
</Views>
<Region>Northwest Region</Region>
<County>Eau Claire</County>
</Cameras>
</CamerasList>