---
title: "Get Execution Status"
method: GET
path: "/status-remote/{executionId}"
---

# Get Execution Status

`GET /status-remote/{executionId}`

Retrieves the current status and details of an execution.
Returns execution metadata, status, and any error information if available.

## Path parameters

- `executionId` string, uuid, required

## Response `200`

Execution status retrieved successfully

- object
  - `executionId` string, uuid, required — The ID of the execution
  - `workflowId` string, uuid, required — The ID of the workflow
  - `status` 'QUEUED' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'TIMEOUT', required — Current status of the execution
  - `createdAt` string, date-time, required — When the execution was created
  - `lastUpdatedAt` string, date-time — When the execution was last updated
  - `variableData` object — variableName:variableValue pairs of variable data for the execution, from the initial queue request
  - `dashboardURL` string — URL to view execution in dashboard
  - `statusDescription` string — Additional details about the execution status

## Other responses

- `400` — Bad request - invalid execution ID format
- `401` — Unauthorized - invalid or missing authentication
- `403` — Forbidden - user doesn't have permission to access this execution
- `404` — Execution not found
- `429` — Too many requests - rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/sola-solutions/apis/sola-execution-api.md) · [All operations](https://skmtc.net/sola-solutions/apis/sola-execution-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sola-solutions/sola-execution-api/versions/144bf308665b/schema)
