Get Execution Details

Retrieve the full execution state snapshot, including the workflow state at time of execution and detailed metadata.

GET/api/v1/logs/executions/{executionId}
X-API-Key<token>

Your Sim API key (personal or workspace). Generate one from the Sim dashboard under Settings > API Keys.

In: header

Path Parameters

executionId*string

The unique execution identifier.

Response Body

application/json

application/json

application/json

application/json

curl -X GET \  "https://www.sim.ai/api/v1/logs/executions/{executionId}" \  -H "X-API-Key: YOUR_API_KEY"
{
  "executionId": "string",
  "workflowId": "string",
  "workflowState": {
    "blocks": {},
    "edges": [
      {}
    ],
    "loops": {},
    "parallels": {}
  },
  "executionMetadata": {
    "trigger": "string",
    "startedAt": "2019-08-24T14:15:22Z",
    "endedAt": "2019-08-24T14:15:22Z",
    "totalDurationMs": 0,
    "cost": {}
  },
  "limits": {
    "workflowExecutionRateLimit": {
      "sync": {
        "requestsPerMinute": 60,
        "maxBurst": 10,
        "remaining": 59,
        "resetAt": "2025-06-20T14:16:00Z"
      },
      "async": {
        "requestsPerMinute": 60,
        "maxBurst": 10,
        "remaining": 59,
        "resetAt": "2025-06-20T14:16:00Z"
      }
    },
    "usage": {
      "currentPeriodCost": 1.25,
      "limit": 50,
      "plan": "pro",
      "isExceeded": false
    }
  }
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}