v46

latestOpenAPI 3.0.0MITraw.githubusercontent.com2026-08-0311978417.1 KB
Apps

Get an app run

Retrieve a run for an app in the space identified by {spaceId}.

get/api/v1/w/{wId}/spaces/{spaceId}/apps/{aId}/runs/{runId}

Path parameters

wIdstring required

Unique string identifier for the workspace

spaceIdstring required

ID of the space

aIdstring required

ID of the app

runIdstring required

ID of the run

Response

The run

Example response

{
  "run": {
    "run_id": "4a2c6e8b0d",
    "app_id": "9f1d3b5a7c",
    "status": {
      "run": "succeeded",
      "build": "succeeded"
    },
    "results": {},
    "specification_hash": "8c0a4e6d2f",
    "traces": [
      [
        {
          "timestamp": 1234567890,
          "trace": {}
        }
      ]
    ]
  }
}