curl --request POST \
--url https://api2.rhombussystems.com/api/report/getCustomEventsNumericCounts \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"endTimeMs": 1640998800000,
"promptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"startTimeMs": 1640995200000
}
'{
"error": true,
"errorMsg": "<string>",
"reports": {},
"warningMsg": "<string>"
}Retrieves aggregated statistics for numeric events event values produced by a selected prompt over a specified time window. Scope & filters: • promptUuid – The prompt to aggregate (required).
Time window & interval: • A time range (startTimeMs → endTimeMs, epoch ms) is required and is used exactly as provided. • If an interval is supplied (e.g., MINUTELY, QUARTERHOURLY, HOURLY), events are bucketed at that granularity. • Aggregation is always performed in the device’s local timezone. Buckets are computed relative to each device’s timezone, then evaluated within the exact provided window.
Response: • Per interval bucket, returns numeric aggregates derived from raw values: count, sum, min, max, average. • Includes minValueTimestampMs and maxValueTimestampMs indicating when min/max occurred within the bucket (if available). • Bucket timestamps are returned as epoch ms.
Notes: • Only numeric prompt types are valid for this endpoint.
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getCustomEventsNumericCounts \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"endTimeMs": 1640998800000,
"promptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"startTimeMs": 1640995200000
}
'{
"error": true,
"errorMsg": "<string>",
"reports": {},
"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 custom LLM reports.
The end timestamp (in Unix epoch milliseconds) of the selected interval
1640998800000
Report interval for filtering face events
MINUTELY, QUARTERHOURLY, HOURLY, DAILY, WEEKLY, MONTHLY base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
The start timestamp (in Unix epoch milliseconds) of the selected interval
1640995200000
Was this page helpful?