Eagle Eye Networks Video API
api.cameramanager.com · Security
Cloud video surveillance API — live and recorded video streams, motion alerts, camera management, and AI-powered video analytics. 40,000+ camera models supported. No extra charges for API access. REST + WebSocket.
Authentication
OAuth2
OAuth2 Authorization Code flow. Free developer program at developer.eagleeyenetworks.com — includes test account and sample cameras.
Sample Requests
GET
List cameras
List all cameras accessible to your account.
https://api.cameramanager.com/api/v3/cameras
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Authorization | Bearer YOUR_TOKEN |
curl -X GET "https://api.cameramanager.com/api/v3/cameras" \ -H "Authorization: Bearer YOUR_TOKEN"
import requests
headers = {
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get(
"https://api.cameramanager.com/api/v3/cameras",
headers=headers,
)
print(response.json())const url = 'https://api.cameramanager.com/api/v3/cameras';
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.cameramanager.com/api/v3/cameras"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.cameramanager.com/api/v3/cameras")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_TOKEN"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.cameramanager.com/api/v3/cameras";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Authorization: Bearer YOUR_TOKEN"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Get live video URL
Get an embeddable live video stream URL for a camera.
https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Authorization | Bearer YOUR_TOKEN |
curl -X GET "https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
headers = {
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get(
"https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl",
headers=headers,
)
print(response.json())const url = 'https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl';
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_TOKEN"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.cameramanager.com/api/v3/cameras/{cameraId}/liveVideoUrl";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Authorization: Bearer YOUR_TOKEN"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Get motion events
Get motion detection events for a camera over a time range.
https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents?endTime=2026-06-08T00:00:00Z&startTime=2026-06-07T00:00:00Z
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Authorization | Bearer YOUR_TOKEN |
curl -X GET "https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents?endTime=2026-06-08T00%3A00%3A00Z&startTime=2026-06-07T00%3A00%3A00Z" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
params = {
"endTime": "2026-06-08T00:00:00Z",
"startTime": "2026-06-07T00:00:00Z"
}
headers = {
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get(
"https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents');
url.searchParams.set('endTime', '2026-06-08T00:00:00Z');
url.searchParams.set('startTime', '2026-06-07T00:00:00Z');
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents")
q := baseURL.Query()
q.Set("endTime", "2026-06-08T00:00:00Z")
q.Set("startTime", "2026-06-07T00:00:00Z")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents")
uri.query = URI.encode_www_form({
"endTime" => "2026-06-08T00:00:00Z",
"startTime" => "2026-06-07T00:00:00Z"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_TOKEN"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.cameramanager.com/api/v3/cameras/{cameraId}/motionEvents?" . http_build_query([
"endTime" => "2026-06-08T00:00:00Z",
"startTime" => "2026-06-07T00:00:00Z"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Authorization: Bearer YOUR_TOKEN"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- Join the free developer program at developer.eagleeyenetworks.com
- You get a test account and access to sample cameras — no hardware needed to start
- OAuth2: register your app to get client_id/secret, then follow Authorization Code flow
- Set Authorization: Bearer YOUR_TOKEN
- No extra API fees — costs are based on camera subscriptions only