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

# List Workflows API

> List your workflows, newest first, optionally filtered by a case-insensitive name substring.



## OpenAPI

````yaml GET /workflows
openapi: 3.1.0
info:
  title: Bolna API
  description: >-
    Use and leverage Bolna Voice AI using APIs through HTTP requests from any
    language in your applications and workflows.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.bolna.ai
    description: Production server
security:
  - bearerAuth: []
paths:
  /workflows:
    get:
      description: Lists your workflows, newest first.
      parameters:
        - in: query
          name: name
          required: false
          schema:
            type: string
          description: Case-insensitive substring filter on the workflow name.
        - in: query
          name: limit
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
          description: Number of results per page.
        - in: query
          name: offset
          required: false
          schema:
            type: integer
            default: 0
            minimum: 0
          description: Number of results to skip.
      responses:
        '200':
          description: Paginated list of workflows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowList'
components:
  schemas:
    WorkflowList:
      type: object
      required:
        - items
        - total
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Workflow'
        total:
          type: integer
          description: Total matching workflows across all pages.
        limit:
          type: integer
        offset:
          type: integer
    Workflow:
      type: object
      required:
        - id
        - name
        - status
      properties:
        id:
          type: string
          format: uuid
          description: Unique workflow id.
        name:
          type: string
          description: Display name.
        status:
          type: string
          enum:
            - active
            - archived
          description: Workflow status.
        latest_published_version:
          type: integer
          nullable: true
          description: >-
            Number of the newest published version, or `null` if nothing is
            published yet.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````