Return the most recent executions for a specific automation.
GEThttps://api.aitronos.com/v1/streamline/automations/{automation_id}/executions
Authorization string required
automation_id string required
limit integer optional ยท Defaults to 50
Maximum executions to return.
A paginated-style object with an executions array containing IDs, statuses, trigger metadata, and timestamps.
Bash
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/streamline/automations/sauto_daily_report/executions" \
-H "Authorization: Bearer $FREDDY_SESSION_TOKEN"Response:
{
"executions": [
{
"id": "sexec_abc123",
"status": "completed",
"triggered_by_user_id": "usr_a1",
"created_at": "2025-11-17T10:00:00Z"
},
{
"id": "sexec_def456",
"status": "failed",
"triggered_by_user_id": "usr_a1",
"created_at": "2025-11-16T10:00:00Z"
}
]
}