🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
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>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request 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?