Skip to main content
GET
/
v1
/
runs
/
{runId}
Get a run
curl --request GET \
  --url https://apis.tryflowy.ai/genstudio-svc-v2/api/v1/runs/{runId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "runId": "64c3f2a1e8b9c0d1f2e3a4b5",
    "appId": "507f1f77bcf86cd799439011",
    "appTitle": "Headshot generator",
    "status": "completed",
    "outputs": [
      {
        "nodeId": "node_9",
        "kind": "image",
        "url": "https://cdn.tryflowy.ai/runs/headshot.png",
        "text": "<string>"
      }
    ],
    "error": "<string>",
    "createdAt": "2026-01-01T00:00:00Z",
    "updatedAt": "2026-01-01T00:00:05Z"
  }
}
Output media URLs are signed and expire. Download or copy the asset to your own storage soon after the run completes.

Authorizations

Authorization
string
header
required

A workspace API key. Secret keys (flowy_…) are server-side — keep them private. Publishable keys (flowy_pk_…) are browser-safe but only work from their allowlisted domains.

Path Parameters

runId
string
required

Response

Run status and outputs.

data
object