> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hitheo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Workflows

> List all workflows for the authenticated user.

Returns all workflows owned by the authenticated user, ordered by creation date.

## Authentication

Requires a Bearer token. See [Authentication](/api-reference/authentication).

## Request Examples

<CodeGroup>
  ```bash curl theme={null}
  curl https://www.hitheo.ai/api/v1/workflows \
    -H "Authorization: Bearer $THEO_API_KEY"
  ```

  ```typescript SDK theme={null}
  const workflows = await theo.workflows();
  ```
</CodeGroup>

## Response

<ResponseField name="workflows" type="object[]">
  Array of workflow objects with `id`, `name`, `triggerType`, `triggerConfig`, `steps`, `enabled`, `createdAt`, and `updatedAt`.
</ResponseField>

## Endpoint

`GET /api/v1/workflows`

Requires authentication via Bearer token. See [Authentication](/api-reference/authentication).
