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

# List Workflows

> Retrieve a list of all workflows associated with the authenticated user.



## OpenAPI

````yaml get /v3/workflows/
openapi: 3.0.0
info:
  title: Lyzr API - List Workflows
  version: v3
  description: Endpoint to list all workflows available for the authenticated user.
servers:
  - url: https://agent-prod.studio.lyzr.ai
security:
  - ApiKeyAuth: []
paths:
  /v3/workflows/:
    get:
      summary: List Workflows Endpoint
      description: Retrieve a list of all workflows associated with the authenticated user.
      operationId: listWorkflows
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
              example: []
        '401':
          description: Unauthorized - Invalid or missing API key
        '500':
          description: Internal Server Error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````