Workflows

GEThttps://api.laminar.run/workspaces/{workspaceId}/workflows
Path parameters
workspaceId*integer (int64)
Response

OK

Body
idinteger (int64)
name*string
description*string
createdAtstring (date-time)
Request
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/workflows', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "id": 0,
    "name": "text",
    "description": "text",
    "createdAt": "2025-01-16T17:39:55.274Z"
  }
]