Skip to main content
GET
/
v1
/
apps
/
{appId}
Get an app
curl --request GET \
  --url https://apis.tryflowy.ai/genstudio-svc-v2/api/v1/apps/{appId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "507f1f77bcf86cd799439011",
    "slug": "headshot-generator",
    "title": "Headshot generator",
    "description": "Turn a selfie into a studio headshot.",
    "published": true,
    "thumbnailUrl": "https://cdn.tryflowy.ai/apps/headshot.png",
    "inputs": [
      {}
    ],
    "outputs": [
      {}
    ]
  }
}
Each input’s nodeId is the key you pass in the run request’s inputs map. See Run an app for the full flow.

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

appId
string
required

Response

App detail with input/output schema.

data
object