GET Cameras
Returns all cameras.
Request Information
https://511on.ca/api/v2/get/cameras
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
lang |
Valid values are 'en' or 'fr', default 'en'. |
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": 455,
"Source": "COMPASS - Central",
"SourceId": "968-407 E/of Bethesda Rd",
"Roadway": "Highway 407",
"Direction": "Unknown",
"Latitude": 43.992,
"Longitude": -78.6864,
"Location": "Highway 407 East of Bethesda",
"SortOrder": 3330,
"Views": [
{
"Id": 815,
"Url": "https://on.stage.traveliq.co/map/Cctv/815",
"Status": "Enabled",
"Description": ""
}
]
},
{
"Id": 456,
"Source": "COMPASS - Central",
"SourceId": "969-407 DARLINGTON CLARKE TWNLN",
"Roadway": "Highway 407",
"Direction": "Unknown",
"Latitude": 44.001,
"Longitude": -78.6659,
"Location": "Highway 407 near Darlington Clarke Townline Road",
"SortOrder": 3335,
"Views": [
{
"Id": 816,
"Url": "https://on.stage.traveliq.co/map/Cctv/816",
"Status": "Enabled",
"Description": ""
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>455</Id>
<Source>COMPASS - Central</Source>
<SourceId>968-407 E/of Bethesda Rd</SourceId>
<Roadway>Highway 407</Roadway>
<Direction>Unknown</Direction>
<Latitude>43.992</Latitude>
<Longitude>-78.6864</Longitude>
<Location>Highway 407 East of Bethesda</Location>
<SortOrder>3330</SortOrder>
<Views>
<View>
<Id>815</Id>
<Url>https://on.stage.traveliq.co/map/Cctv/815</Url>
<Status>Enabled</Status>
<Description></Description>
</View>
</Views>
</Cameras>
<Cameras>
<Id>456</Id>
<Source>COMPASS - Central</Source>
<SourceId>969-407 DARLINGTON CLARKE TWNLN</SourceId>
<Roadway>Highway 407</Roadway>
<Direction>Unknown</Direction>
<Latitude>44.001</Latitude>
<Longitude>-78.6659</Longitude>
<Location>Highway 407 near Darlington Clarke Townline Road</Location>
<SortOrder>3335</SortOrder>
<Views>
<View>
<Id>816</Id>
<Url>https://on.stage.traveliq.co/map/Cctv/816</Url>
<Status>Enabled</Status>
<Description></Description>
</View>
</Views>
</Cameras>
</CamerasList>