Get Job Status

Poll the status of an asynchronous workflow execution. Use the jobId returned from the Execute Workflow endpoint when the execution is queued asynchronously.

GET/api/jobs/{jobId}
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

jobId*string

The job identifier returned in the async execution response.

Response Body

application/json

application/json

application/json

application/json

curl -X GET \  "https://www.sim.ai/api/jobs/{jobId}" \  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "taskId": "job_abc123",
  "status": "completed",
  "output": {
    "content": "Done"
  },
  "metadata": {
    "startTime": "2026-01-15T10:30:00Z"
  }
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}