Skip to content
Last updated

Check the status, logs, and result payload for a single Streamline execution.

GEThttps://api.aitronos.com/v1/streamline/executions/{execution_id}

Headers

Authorization string required

Path Parameters

execution_id string required
Identifier formatted as sexec_....

Returns

Execution metadata containing status (queued, running, completed, failed), timestamps, structured result, and aggregated logs.

Bash
curl "https://api.aitronos.com/v1/streamline/executions/sexec_abc123" \
  -H "Authorization: Bearer $FREDDY_SESSION_TOKEN"

Response:

{
  "id": "sexec_abc123",
  "automation_id": "sauto_daily_report",
  "status": "completed",
  "started_at": "2025-11-17T10:00:00Z",
  "completed_at": "2025-11-17T10:02:10Z",
  "result": {
    "report_url": "https://storage.freddy.ai/reports/daily.pdf"
  },
  "logs": "[10:00:00] Starting pipeline..."
}