Get job processing statistics over time.
Returns job metrics grouped by day, week, or month. Includes status breakdown, processing times, and success rates.
API Key authentication. Format: dk_test_
Time grouping interval
day, week, month Start date (ISO 8601, default: 30 days ago)
End date (ISO 8601, default: today)
Filter by job status
pending, processing, completed, failed Job processing metrics and status breakdown over time
Response for job stats over time (GET /v1/stats/jobs).
Job processing metrics and status breakdown over time.
Time period covered
{
"end": "2025-12-07",
"start": "2025-11-07"
}Grouping interval
day, week, month Time series data points
Aggregated totals for the period
{
"avg_processing_time_seconds": 11.8,
"by_status": {
"completed": 148,
"failed": 5,
"pending": 2,
"processing": 1
},
"success_rate": 0.967,
"total": 156
}