Get footage seekpoints for multiple cameras
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"durationSec": 3600,
"includeAnyMotion": true,
"startTimeSec": 1640995200
}
'import requests
url = "https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple"
payload = {
"cameraUuids": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"durationSec": 3600,
"includeAnyMotion": True,
"startTimeSec": 1640995200
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
cameraUuids: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
durationSec: 3600,
includeAnyMotion: true,
startTimeSec: 1640995200
})
};
fetch('https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"cameraUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"durationSec\": 3600,\n \"includeAnyMotion\": true,\n \"startTimeSec\": 1640995200\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageSeekPointMap": {},
"warningMsg": "<string>"
}Camera Webservice
Get footage seekpoints for multiple cameras
Get activity seekpoints for multiple cameras
POST
/
api
/
camera
/
getFootageSeekpointsForMultiple
Get footage seekpoints for multiple cameras
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"durationSec": 3600,
"includeAnyMotion": true,
"startTimeSec": 1640995200
}
'import requests
url = "https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple"
payload = {
"cameraUuids": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"durationSec": 3600,
"includeAnyMotion": True,
"startTimeSec": 1640995200
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
cameraUuids: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
durationSec: 3600,
includeAnyMotion: true,
startTimeSec: 1640995200
})
};
fetch('https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/camera/getFootageSeekpointsForMultiple")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"cameraUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"durationSec\": 3600,\n \"includeAnyMotion\": true,\n \"startTimeSec\": 1640995200\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageSeekPointMap": {},
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to retrieve footage seek points for multiple cameras within a time range.
List of camera UUIDs to retrieve seek points for
RUUID with optional appended facet information
Example:
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Duration in seconds
Example:
3600
Whether to include any motion events
Example:
true
Start time in seconds since epoch
Example:
1640995200
Last modified on September 21, 2026