API referenceAgent spec
Get Agent Spec execution status
Retrieve the current status and per-node execution info for a running or completed Agent Spec execution.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
id*string
Execution ID from the runtime
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/agentspec/executions/string"{ "execution_id": "string", "status": "running", "execution_status": "string", "node_statuses": { "property1": { "status": "idle", "state": "string", "execution_count": 0, "started_at": "2019-08-24T14:15:22Z", "duration_ms": 0, "error": "string" }, "property2": { "status": "idle", "state": "string", "execution_count": 0, "started_at": "2019-08-24T14:15:22Z", "duration_ms": 0, "error": "string" } }, "nodes": { "property1": { "status": "idle", "state": "string", "execution_count": 0, "started_at": "2019-08-24T14:15:22Z", "duration_ms": 0, "error": "string" }, "property2": { "status": "idle", "state": "string", "execution_count": 0, "started_at": "2019-08-24T14:15:22Z", "duration_ms": 0, "error": "string" } }, "error": "string", "message": "string"}Get Agent Spec execution results GET
Retrieve the final results of a completed Agent Spec execution. Returns null/404 if the execution is still running or was cancelled.
Check Agent Spec runtime health GET
Verify that the configured Agent Spec runtime is available and responding. Used to check connectivity before execution.