> ## Documentation Index
> Fetch the complete documentation index at: https://developer.omni.z-api.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List flows

> List the flows of a WABA

## Concepts

Returns the flows registered in the WABA, with name, categories and publication status.

Use `limit` to paginate.

<Note>
  The `wabaId` is obtained through the [List WABAs](/en/templates/list-businesses) endpoint.
</Note>


## OpenAPI

````yaml en/flows/openapi.json GET /whatsapp/businesses/{wabaId}/flows
openapi: 3.1.0
info:
  title: Omni Z-API - WhatsApp Flows
  description: API to create and manage WhatsApp Flows (native in-conversation forms)
  version: 1.0.0
servers:
  - url: https://api.omni.z-api.io
security:
  - bearerAuth: []
paths:
  /whatsapp/businesses/{wabaId}/flows:
    get:
      tags:
        - Flows
      summary: List flows
      description: Returns the WABA flows, with name, categories and publication status.
      operationId: listFlows
      parameters:
        - name: wabaId
          in: path
          required: true
          description: WABA ID (obtained via List WABAs)
          schema:
            type: string
            example: '428083093730937'
        - name: limit
          in: query
          required: false
          description: Number of flows per page
          schema:
            type: integer
            minimum: 1
            maximum: 100
            example: 25
      responses:
        '200':
          description: List of flows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowListResponse'
              example:
                data:
                  - id: '1122334455667788'
                    name: agendamento_consulta
                    categories:
                      - APPOINTMENT_BOOKING
                    status: PUBLISHED
                    endpoint_uri: null
                    validation_errors: []
        '401':
          description: Invalid or missing token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FlowListResponse:
      type: object
      properties:
        data:
          type: array
          description: List of flows
          items:
            $ref: '#/components/schemas/Flow'
    Error:
      type: object
      properties:
        error:
          type: integer
        message:
          type: string
    Flow:
      type: object
      properties:
        id:
          type: string
          description: Flow ID
        name:
          type: string
          description: Flow name
        categories:
          type: array
          description: Flow categories (Meta uses them during review)
          items:
            type: string
            enum:
              - SIGN_UP
              - SIGN_IN
              - APPOINTMENT_BOOKING
              - LEAD_GENERATION
              - CONTACT_US
              - CUSTOMER_SUPPORT
              - SURVEY
              - OTHER
        status:
          type: string
          enum:
            - DRAFT
            - PUBLISHED
            - DEPRECATED
            - BLOCKED
            - THROTTLED
          description: Publication status
        endpoint_uri:
          type: string
          nullable: true
          description: Your endpoint URL, required only for flows using `data_exchange`
        flow_json:
          type: string
          description: Screen definition in JSON, sent as a **string**
        validation_errors:
          type: array
          description: Validation issues returned by Meta
          items:
            type: object
            properties:
              key:
                type: string
                description: Issue key
              value:
                type: string
                description: Issue detail
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````