AI & Automation
AI Agents
Monitor and manage AI agents, view execution history, approve pending actions, and manage automated schedules.
Dashboard & Metrics
Agent overview, usage stats, performance
Execution History
Browse and inspect past agent runs
Approvals & Schedules
Approve actions, manage cron schedules
Dashboard
Query Parameters
| Parameter | Type | Description |
|---|---|---|
dateFrom | string | ISO 8601 start date |
dateTo | string | ISO 8601 end date |
Request
HTTP
http
GET https://api.leadron.io/v1/agents/dashboard?dateFrom=2026-02-01T00:00:00.000Z&dateTo=2026-02-28T23:59:59.000Z
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0Response200OK
200 Response
json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"success": true,
"status": 200,
"data": {
"agents": {
"caller": {
"status": "active",
"totalCalls": 142,
"successRate": 0.78
},
"recommender": {
"status": "active",
"totalRecommendations": 89,
"acceptRate": 0.65
}
},
"recentExecutions": 24,
"pendingApprovals": 3
},
"meta": {
"timestamp": "2026-02-15T10:00:00.000Z",
"version": "v1"
}
}