GET
/
api
/
v1
curl --request GET \
  --url https://flows.eachlabs.ai/api/v1/
{
  "status": "<string>",
  "message": "<string>",
  "total": 123,
  "workflows": [
    {
      "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>"
    }
  ]
}

Response

200
application/json
ListWorkflowsResponse JSON
status
string
message
string
total
integer
workflows
object[]