Get Workflow Status

Check whether a workflow is deployed and whether its draft has changed since the last deployment. Use it before executing a workflow.

GET/api/workflows/{id}/status
X-API-Key<token>

Your SteelEngine API key (personal, workspace, or organization). Create personal and workspace keys under Settings > API Keys. Create organization keys under Organization Settings > API Keys.

In: header

Path Parameters

id*string

The unique identifier of the workflow.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/workflows/string/status"
{  "isDeployed": true,  "deployedAt": "2026-01-15T10:30:00Z",  "isPublished": false,  "needsRedeployment": false}