Skip to main content
GET
/
agentspec
/
executions
/
{id}
Get Agent Spec execution status
curl --request GET \
  --url http://localhost:5173/api/flowdrop/agentspec/executions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "execution_id": "<string>",
  "execution_status": "<string>",
  "node_statuses": {},
  "nodes": {},
  "error": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Path Parameters

id
string
required

Execution ID from the runtime

Response

Execution status retrieved successfully

Status of an Agent Spec runtime execution

execution_id
string

Execution ID

status
enum<string>

Current execution status

Available options:
running,
completed,
success,
failed,
error,
cancelled
execution_status
string

Alternative status field

node_statuses
object

Per-node execution status (keyed by node name)

nodes
object

Alternative per-node status field

error
string

Error message if execution failed

message
string

Alternative error message field