Skip to main content
GET
/
v1
/
apps
/
{appId}
/
workflow
Get App Workflow
curl --request GET \
  --url https://app.uselamina.ai/v1/apps/{appId}/workflow \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "appId": "80d4d454-8844-489f-b903-2ad65a414482",
    "name": "test sync",
    "nodes": [
      {
        "id": "aiDesignerNode-1773051929782-5yzqjkwpm",
        "type": "aiDesignerNode",
        "label": "aiDesignerNode"
      },
      {
        "id": "aiDesignerNode-1773132653203-v9hn959pe",
        "type": "aiDesignerNode",
        "label": "aiDesignerNode"
      },
      {
        "id": "klingVideoNode-1773149496212-nm2mjjfxi",
        "type": "klingVideoNode",
        "label": "klingVideoNode"
      }
    ],
    "edges": [
      {
        "source": "aiDesignerNode-1773051929782-5yzqjkwpm",
        "target": "aiDesignerNode-1773132653203-v9hn959pe"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.uselamina.ai/llms.txt

Use this file to discover all available pages before exploring further.

Inspect the DAG (nodes and edges) behind an app. Each node is a processing step — image generation, video creation, compositing, upscaling — and edges show the data flow between them. Useful for agents that need to reason about what an app does before running it, or for building tooling that classifies apps by pipeline structure.

Authorizations

x-api-key
string
header
required

Workspace API key. Prefix: lma_. Example: lma_abc123...

Path Parameters

appId
string<uuid>
required

The app ID (UUID) from the List Apps response

Response

Workflow structure with nodes and edges

data
object

The workflow graph showing processing nodes and their connections