Get all cameras
GET/api/firecams/v0/cameras
Returns a list of all cameras in the AlertWest network with their current status, position, and latest image information.
Request
Responses
- 200
Successful response with array of camera objects
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Display name of the camera
Source identifier for the camera
site
object
required
Physical location information of the camera
Unique identifier for the site
Optional description of the site
Latitude coordinate in decimal degrees
Longitude coordinate in decimal degrees
Altitude in meters (if available)
County where the camera is located
US state code
Timestamp of the site information
image
object
required
Information about the latest captured image
Timestamp when the image was captured
URL to access the image
position
object
required
Current pan-tilt-zoom position of the camera
Timestamp of the position information
Pan angle in degrees (0-360)
Tilt angle in degrees (negative is down)
Zoom level value
parameters
object
required
Camera hardware and configuration parameters
Timestamp of the parameters
Camera serial number
Camera manufacturer brand
Camera model/product number
view
object
required
Geographic view line representing the camera's field of view
Timestamp of the view information
Space-separated coordinate pairs representing the view line from camera to target point
[
{
"name": "Axis-MtAukum1",
"source": "Mt_Aukum_1",
"site": {
"id": "2148",
"description": "string",
"latitude": "38.573868",
"longitude": "-120.726982",
"altitude": "string",
"county": "eldorado",
"state": "CA",
"time": "2025-12-10T20:35:56Z"
},
"image": {
"time": "2025-12-10T20:35:56Z",
"url": "https://img.cdn.prod.alertwest.com/data/img/2148/2025/12/10/Mt_Aukum_1_1765398956_3021.jpg"
},
"position": {
"time": "2025-12-10T20:35:56Z",
"pan": "248.00",
"tilt": "-1.80",
"zoom": "3000"
},
"parameters": {
"time": "2025-12-10T20:35:56Z",
"Properties.System.SerialNumber": "string",
"Brand.Brand": "Axis",
"Brand.ProdNbr": "Q6075-E"
},
"view": {
"time": "2025-12-10T20:35:56Z",
"line": "38.573868,-120.726982 38.568436,-120.744104"
}
}
]
[
{
"name": "Axis-MtAukum1",
"source": "Mt_Aukum_1",
"site": {
"id": "2148",
"description": null,
"latitude": "38.573868",
"longitude": "-120.726982",
"altitude": null,
"county": "eldorado",
"state": "CA",
"time": "2025-12-10T20:35:56Z"
},
"image": {
"time": "2025-12-10T20:35:56Z",
"url": "https://img.cdn.prod.alertwest.com/data/img/2148/2025/12/10/Mt_Aukum_1_1765398956_3021.jpg"
},
"position": {
"time": "2025-12-10T20:35:56Z",
"pan": "248.00",
"tilt": "-1.80",
"zoom": "3000"
},
"parameters": {
"time": "2025-12-10T20:35:56Z",
"Properties.System.SerialNumber": null,
"Brand.Brand": "Axis",
"Brand.ProdNbr": "Q6075-E"
},
"view": {
"time": "2025-12-10T20:35:56Z",
"line": "38.573868,-120.726982 38.568436,-120.744104"
}
}
]