GET Cameras

Returns all cameras.

Request Information

https://511wi.gov/api/v2/get/cameras

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
Id

A unique identifier.

integer
Source

The name of the source that provided this camera.

string
SourceId

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
Views

Views of a camera.

string
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

Sample:
[
	{
		"Id": "162--7",
		"Organization": "ATMS",
		"RoadwayName": "I-41/43/894",
		"DirectionOfTravel": "Unknown",
		"Latitude": 42.962255999999999,
		"Longitude": -88.018485,
		"Name": "I-41/43/894 @ 84th St",
		"Url": "https://511wi.gov/map/Cctv/162--7",
		"VideoUrl": "https://cctv1.dot.wi.gov:443/rtplive/CCTV-40-0028/playlist.m3u8",
		"Status": "Enabled",
		"Region": "Southeast Region",
		"County": "Milwaukee"
	},
	{
		"Id": "163--7",
		"Organization": "ATMS",
		"RoadwayName": "I-41/43/894",
		"DirectionOfTravel": "Unknown",
		"Latitude": 42.961406,
		"Longitude": -88.028422,
		"Name": "I-41/43/894 @ 92nd St",
		"Url": "https://511wi.gov/map/Cctv/163--7",
		"VideoUrl": "https://cctv1.dot.wi.gov:443/rtplive/CCTV-40-0029/playlist.m3u8",
		"Status": "Enabled",
		"Region": "Southeast Region",
		"County": "Milwaukee"
	}
]

XML

Sample:
<CamerasList>
    <Cameras>
        <Id>162--7</Id>
        <Organization>ATMS</Organization>
        <RoadwayName>I-41/43/894</RoadwayName>
        <DirectionOfTravel>Unknown</DirectionOfTravel>
        <Latitude>42.962255999999996</Latitude>
        <Longitude>-88.018485</Longitude>
        <Name>I-41/43/894 @ 84th St</Name>
        <Url>https://511wi.gov/map/Cctv/162--7</Url>
        <VideoUrl>https://cctv1.dot.wi.gov:443/rtplive/CCTV-40-0028/playlist.m3u8</VideoUrl>
        <Status>Enabled</Status>
        <Region>Southeast Region</Region>
        <County>Milwaukee</County>
    </Cameras>
    <Cameras>
        <Id>163--7</Id>
        <Organization>ATMS</Organization>
        <RoadwayName>I-41/43/894</RoadwayName>
        <DirectionOfTravel>Unknown</DirectionOfTravel>
        <Latitude>42.961406</Latitude>
        <Longitude>-88.028422</Longitude>
        <Name>I-41/43/894 @ 92nd St</Name>
        <Url>https://511wi.gov/map/Cctv/163--7</Url>
        <VideoUrl>https://cctv1.dot.wi.gov:443/rtplive/CCTV-40-0029/playlist.m3u8</VideoUrl>
        <Status>Enabled</Status>
        <Region>Southeast Region</Region>
        <County>Milwaukee</County>
    </Cameras>
</CamerasList>