Fetch Timing Report

Retrieve average LLM call timing for task executions over time. This endpoint returns: - Average `llm_call_timing` values grouped by hour or day - Total task run counts for each time bucket - A per-revision breakdown, including test revisions Defaults: - `aggregation=hour` returns the last 24 hours when no date range is provided - `aggregation=day` returns the last 7 days when no date range is provided

Authentication

AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

OR
AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

Path parameters

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.
task_idstringRequiredformat: "uuid"
The specific Task to reference.

Query parameters

start_datestring or nullOptional

Start date for the report (e.g., ‘2023-06-01’, ‘24 hours ago’, ‘yesterday’).

end_datestring or nullOptional

End date for the report (e.g., ‘2023-06-30’, ‘now’, ‘today’).

aggregationenumOptionalDefaults to hour
The aggregation level for the report. Can be either 'hour' or 'day'
Allowed values:

Response

Timing report retrieved successfully
task_idstringformat: "uuid"
The unique identifier of the Task.
date_rangemap from strings to nullable strings
The time range for the report, with start and end timestamps.
aggregationenum
The time interval for data aggregation. 'hour' shows last 24 hours in hourly blocks, 'day' shows last 7 days in daily blocks.
total_task_runsmap from strings to integers
Total number of task runs for each time interval.
task_revisionslist of objects
Timing data broken down by task revision, showing performance metrics for each active revision.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
422
Unprocessable Entity Error
500
Internal Server Error