> ## 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.

# Get Workflow Endpoint



## OpenAPI

````yaml get /v3/workflows/{flow_id}
openapi: 3.0.0
info:
  title: Lyzr API - Get Workflow
  version: v3
  description: Get the details of a workflow by its ID.
servers:
  - url: https://agent-prod.studio.lyzr.ai
security: []
paths:
  /v3/workflows/{flow_id}:
    get:
      summary: Get Workflow Endpoint
      description: Get a workflow by ID.
      operationId: getWorkflow
      parameters:
        - name: flow_id
          in: path
          required: true
          description: Unique ID of the workflow.
          schema:
            type: string
            example: e0ab5411-8620-41c0-acdd-bac4c35fc7c0
      responses:
        '200':
          description: Workflow details retrieved successfully
          content:
            application/json:
              schema:
                type: object
                example:
                  flow_name: Sample Workflow
                  tasks: []
        '401':
          description: Unauthorized
        '404':
          description: Workflow not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````