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

# List Agents

> Returns all agents for the authenticated company.



## OpenAPI

````yaml GET /api/developers/v1/agents
openapi: 3.0.3
info:
  title: Developer API
  version: 1.0.0
servers:
  - url: https://app.fluently.at
security:
  - bearerAuth: []
paths:
  /api/developers/v1/agents:
    get:
      tags:
        - Agents
      summary: List all agents
      description: Returns all agents for the authenticated company.
      operationId: listAgents
      responses:
        '200':
          description: A list of agents
          content:
            application/json:
              schema:
                type: object
                properties:
                  agents:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeveloperAgentResponse'
                required:
                  - agents
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    DeveloperAgentResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        company:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - name
        - company
        - createdAt
        - updatedAt
    UnauthorizedResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
        - success
        - message
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
      required:
        - success
        - message
  responses:
    Unauthorized:
      description: Missing or invalid Authorization header or token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UnauthorizedResponse'
    InternalError:
      description: Internal server error during authentication or processing
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````