GET Cameras
Returns all cameras.
Request Information
https://511.idaho.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 |
Response Formats
JSON
[
{
"Id": 946,
"Source": "INET",
"SourceId": "978",
"Roadway": "I-184 Milwaukee",
"Direction": "West",
"Latitude": 43.60515,
"Longitude": -116.28108,
"Location": "I-184 Milwaukee Franklin. User password weird on camera",
"SortOrder": 0,
"Views": [
{
"Id": 2403,
"Url": "https://511.idaho.gov/map/Cctv/2403",
"Status": "Disabled",
"Description": "D3 I-184 0.9 Milwauke Frankln504"
}
]
},
{
"Id": 947,
"Source": "INET",
"SourceId": "979",
"Roadway": "US-20 Myrtle",
"Direction": "East",
"Latitude": 43.613018,
"Longitude": -116.207596,
"Location": "US-20 Myrtle 9th",
"SortOrder": 0,
"Views": [
{
"Id": 2404,
"Url": "https://511.idaho.gov/map/Cctv/2404",
"Status": "Disabled",
"Description": "D3 US-20 48.8 Myrtle 9th 505"
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>946</Id>
<Source>INET</Source>
<SourceId>978</SourceId>
<Roadway>I-184 Milwaukee</Roadway>
<Direction>West</Direction>
<Latitude>43.60515</Latitude>
<Longitude>-116.28108</Longitude>
<Location>I-184 Milwaukee Franklin. User password weird on camera</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>2403</Id>
<Url>https://511.idaho.gov/map/Cctv/2403</Url>
<Status>Disabled</Status>
<Description>D3 I-184 0.9 Milwauke Frankln504</Description>
</View>
</Views>
</Cameras>
<Cameras>
<Id>947</Id>
<Source>INET</Source>
<SourceId>979</SourceId>
<Roadway>US-20 Myrtle</Roadway>
<Direction>East</Direction>
<Latitude>43.613018</Latitude>
<Longitude>-116.207596</Longitude>
<Location>US-20 Myrtle 9th</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>2404</Id>
<Url>https://511.idaho.gov/map/Cctv/2404</Url>
<Status>Disabled</Status>
<Description>D3 US-20 48.8 Myrtle 9th 505</Description>
</View>
</Views>
</Cameras>
</CamerasList>