GET Cameras
Returns all cameras.
Request Information
https://511la.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 |
Given sort order for camera |
integer |
Views |
Display all camera views. |
object |
Response Formats
JSON
[
{
"Id": 1,
"Source": "LADOTD",
"SourceId": "100",
"Roadway": "I-20",
"Direction": "Unknown",
"Latitude": 32.538889,
"Longitude": -93.630833,
"Location": "I-20 at I-220 Off Ramp",
"SortOrder": 0,
"Views": [
{
"Id": 2205,
"Url": "https://lu.stage.traveliq.co/map/Cctv/2205",
"Status": "Enabled",
"Description": "Traffic closest to this camera is traveling eastbound on I-20.",
"VideoUrl": "https://ITSStreamingBR2.dotd.la.gov/public/shr-cam-030.streams/playlist.m3u8"
}
]
},
{
"Id": 2,
"Source": "LADOTD",
"SourceId": "101",
"Roadway": "I-20 N ",
"Direction": "Unknown",
"Latitude": 32.46091,
"Longitude": -93.831,
"Location": "I-20 at Monkhouse Drive t",
"SortOrder": 2,
"Views": [
{
"Id": 2206,
"Url": "https://lu.stage.traveliq.co/map/Cctv/2206",
"Status": "Enabled",
"Description": "Traffic closest to this camera is traveling eastbound on I-20.",
"VideoUrl": "https://ITSStreamingBR2.dotd.la.gov/public/shr-cam-002.streams/playlist.m3u8"
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>1</Id>
<Source>LADOTD</Source>
<SourceId>100</SourceId>
<Roadway>I-20</Roadway>
<Direction>Unknown</Direction>
<Latitude>32.538889</Latitude>
<Longitude>-93.630833</Longitude>
<Location>I-20 at I-220 Off Ramp</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>2205</Id>
<Url>https://lu.stage.traveliq.co/map/Cctv/2205</Url>
<Status>Enabled</Status>
<Description>Traffic closest to this camera is traveling eastbound on I-20.</Description>
<VideoUrl>https://ITSStreamingBR2.dotd.la.gov/public/shr-cam-030.streams/playlist.m3u8</VideoUrl>
</View>
</Views>
</Cameras>
<Cameras>
<Id>2</Id>
<Source>LADOTD</Source>
<SourceId>101</SourceId>
<Roadway>I-20 N </Roadway>
<Direction>Unknown</Direction>
<Latitude>32.46091</Latitude>
<Longitude>-93.831</Longitude>
<Location>I-20 at Monkhouse Drive t</Location>
<SortOrder>2</SortOrder>
<Views>
<View>
<Id>2206</Id>
<Url>https://lu.stage.traveliq.co/map/Cctv/2206</Url>
<Status>Enabled</Status>
<Description>Traffic closest to this camera is traveling eastbound on I-20.</Description>
<VideoUrl>https://ITSStreamingBR2.dotd.la.gov/public/shr-cam-002.streams/playlist.m3u8</VideoUrl>
</View>
</Views>
</Cameras>
</CamerasList>