Skip to main content
GET
/
v1
/
executions
/
{executionId}
Get execution status and outputs
curl --request GET \
  --url https://app.uselamina.ai/v1/executions/{executionId} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "executionId": "fc32ae7d-6840-4be3-8fb1-539a60e33fc3",
    "workflowId": "80d4d454-8844-489f-b903-2ad65a414482",
    "status": "queued",
    "outputs": [
      {
        "id": "aiDesignerNode-1773051929782-5yzqjkwpm",
        "label": "AI Designer",
        "type": "pending",
        "value": null,
        "status": "pending",
        "error": null
      }
    ],
    "errorMessage": null,
    "startedAt": null,
    "completedAt": null,
    "createdAt": "2026-03-23T12:22:40.552Z"
  }
}
Returns the current status and outputs for an execution. Use this endpoint to poll for results if you’re not using webhooks. Poll every 3-5 seconds until status is completed or failed. If you passed ?webhook= when starting the execution, the same payload is delivered to your webhook URL automatically — no polling needed. For long-running workflows, treat queued and running as normal intermediate states rather than failure conditions.

Authorizations

x-api-key
string
header
required

Workspace API key. Prefix: lma_. Example: lma_abc123...

Path Parameters

executionId
string
required

The execution ID returned from the Run App endpoint

Response

Execution status with output values

data
object

Poll until status is completed or failed.