GET
/
api
/
v1
/
{workflowID}
curl --request GET \
  --url https://flows.eachlabs.ai/api/v1/{workflowID}
{
  "workspace_id": "<string>",
  "organization_id": "<string>",
  "user_id": "<string>",
  "id": "<string>",
  "category": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "slug": "<string>",
    "icon": "<string>",
    "thumbnail": "<string>"
  },
  "name": "<string>",
  "description": "<string>",
  "thumbnail_url": "<string>",
  "status": "<string>",
  "inputs": [
    {
      "name": "<string>",
      "type": "<string>",
      "default_value": "<string>"
    }
  ],
  "outputs": [
    {
      "name": "<string>",
      "type": "<string>",
      "value": "<string>"
    }
  ],
  "steps": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "model_slug": "<string>",
      "model_version": "<string>",
      "params": {
        "key": {}
      }
    }
  ],
  "edges": [
    {
      "id": "<string>",
      "source": "<string>",
      "target": "<string>",
      "type": "<string>"
    }
  ],
  "nodes_json": "<string>",
  "edges_json": "<string>",
  "premium": true,
  "trigger_count": 123,
  "popularity": 123,
  "last_updated_by": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Path Parameters

workflowID
string
required

Workflow ID

Response

200
application/json
Flow JSON

The response is of type object.