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

> Returns all conversations for the authenticated company.



## OpenAPI

````yaml GET /api/developers/v1/conversations
openapi: 3.0.3
info:
  title: Developer API
  version: 1.0.0
servers:
  - url: https://app.fluently.at
security:
  - bearerAuth: []
paths:
  /api/developers/v1/conversations:
    get:
      tags:
        - Conversations
      summary: List all conversations
      description: Returns all conversations for the authenticated company.
      operationId: listConversations
      responses:
        '200':
          description: A list of conversations
          content:
            application/json:
              schema:
                type: object
                properties:
                  conversations:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeveloperConversationResponse'
                required:
                  - conversations
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    DeveloperConversationResponse:
      type: object
      properties:
        id:
          type: string
        agent:
          type: string
        cost:
          type: number
          format: float
        from:
          type: string
        to:
          type: string
        duration:
          type: number
        createdAt:
          type: string
          format: date-time
      required:
        - id
        - agent
        - cost
        - from
        - to
        - duration
        - createdAt
    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

````