curl --request POST \
--url https://api2.rhombussystems.com/api/video/getExactFrameUri \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"timestampMs": 123
}
'{
"error": true,
"errorMsg": "<string>",
"frameUri": "https://example.com/frame/12345.jpg",
"responseMessage": "Frame generated successfully",
"warningMsg": "<string>"
}Generate URL to get an exact frame with optional crop from a camera
curl --request POST \
--url https://api2.rhombussystems.com/api/video/getExactFrameUri \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"timestampMs": 123
}
'{
"error": true,
"errorMsg": "<string>",
"frameUri": "https://example.com/frame/12345.jpg",
"responseMessage": "Frame generated successfully",
"warningMsg": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt
Use this file to discover all available pages before exploring further.
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
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.
api-token, api, partner-api-token, partner-api Request object for generating URL to get an exact frame with optional crop from a camera.
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Timestamp in epoch milliseconds
Ratio to shrink the image pixels by
x >= 1Adjust quality of image compression
0 <= x <= 100Precise ratio to crop the height by. Capped at 10000, which is 100.00% of the image
0 <= x <= 10000Precise ratio to crop the width by. Capped at 10000, which is 100.00% of the image
0 <= x <= 10000Proportional location to start horizontal crop at. Where 10000 is 100.00% of, or the end of the image
0 <= x <= 10000Proportional location to start vertical crop at. Where 10000 is 100.00% of, or the end of the image
0 <= x <= 10000OK
Response object containing the exact frame URI.
Was this page helpful?