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

# Flow Details

Get detailed information about a specific automation flow.


## OpenAPI

````yaml GET /api/v1/flows/{source}/{flowId}
openapi: 3.1.0
info:
  title: WaveCentric AI LooP API
  description: >-
    Comprehensive API for managing omnichannel logistics, inquiries, tasks, and
    data lake operations.
  version: 1.0.0
servers:
  - url: https://ai-loop.alpeadria.com
    description: Production server
security: []
paths:
  /api/v1/flows/{source}/{flowId}:
    get:
      tags:
        - Flows & Automation
      summary: Get flow details
      operationId: get-flow-details
      parameters:
        - name: source
          in: path
          required: true
          schema:
            type: string
        - name: flowId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Detailed flow configuration
          content:
            application/json:
              schema:
                type: object
              examples:
                success:
                  value:
                    id: HAi2EtVRQewrOjXt
                    displayName: Inquiry Processor
                    status: PUBLISHED
                    projectId: abc123
                    version:
                      id: v1.0
                      displayName: Version 1.0
                      flowId: HAi2EtVRQewrOjXt
                      state: LOCKED
                    schedule: null
                    tags:
                      - automation
                      - inquiry
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````