GET Cameras
Returns all cameras.
Request Information
https://511nl.ca/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 |
One of the following directions where the camera is facing: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
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": "GovNL",
"SourceId": "05e14abnwke",
"Roadway": "Route 1",
"Direction": "Unknown",
"Latitude": 47.8216128301978,
"Longitude": -59.1927394423129,
"Location": "Doyles Route 1",
"SortOrder": 130,
"Views": [
{
"Id": 1,
"Url": "https://511nl.ca/map/Cctv/1",
"Status": "Enabled",
"Description": ""
}
]
},
{
"Id": 2,
"Source": "GovNL",
"SourceId": "0rcnspgzrsv",
"Roadway": "Route 430",
"Direction": "Unknown",
"Latitude": 51.3131199105114,
"Longitude": -56.7012128546597,
"Location": "Flowers Cove Route 430",
"SortOrder": 0,
"Views": [
{
"Id": 2,
"Url": "https://511nl.ca/map/Cctv/2",
"Status": "Enabled",
"Description": ""
}
]
}
]
XML
<CamerasList>
<Cameras>
<Id>1</Id>
<Source>GovNL</Source>
<SourceId>05e14abnwke</SourceId>
<Roadway>Route 1</Roadway>
<Direction>Unknown</Direction>
<Latitude>47.8216128301978</Latitude>
<Longitude>-59.1927394423129</Longitude>
<Location>Doyles Route 1</Location>
<SortOrder>130</SortOrder>
<Views>
<View>
<Id>1</Id>
<Url>https://511nl.ca/map/Cctv/1</Url>
<Status>Enabled</Status>
<Description/>
</View>
</Views>
</Cameras>
<Cameras>
<Id>2</Id>
<Source>GovNL</Source>
<SourceId>0rcnspgzrsv</SourceId>
<Roadway>Route 430</Roadway>
<Direction>Unknown</Direction>
<Latitude>51.3131199105114</Latitude>
<Longitude>-56.7012128546597</Longitude>
<Location>Flowers Cove Route 430</Location>
<SortOrder>0</SortOrder>
<Views>
<View>
<Id>2</Id>
<Url>https://511nl.ca/map/Cctv/2</Url>
<Status>Enabled</Status>
<Description/>
</View>
</Views>
</Cameras>
</CamerasList>