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

# Get all conversations



## OpenAPI

````yaml GET /conversations/
openapi: 3.0.0
info:
  title: Cogfy Messenger Public API
  version: 1.0.0
  description: API for interacting with the Cogfy Messenger platform
servers:
  - url: https://messenger-public-api.cogfy.com
    description: Production server
  - url: http://localhost:53981
    description: Local server
security:
  - ApiKeyAuth: []
tags: []
paths:
  /conversations/:
    get:
      tags:
        - Conversations
      summary: Get all conversations
      parameters:
        - in: query
          name: cursor
          schema:
            type: string
          description: Cursor for pagination
      responses:
        '200':
          description: A list of conversations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        workspaceId:
                          type: string
                          format: uuid
                        phoneNumberId:
                          type: string
                          format: uuid
                        recipientId:
                          type: string
                          format: uuid
                        assigneeId:
                          type: string
                          format: uuid
                        lastMessageId:
                          type: string
                          format: uuid
                        createDate:
                          type: string
                          format: date-time
                        serviceWindowExpireDate:
                          type: string
                          format: date-time
                  cursors:
                    type: object
                    properties:
                      next:
                        type: string
                        nullable: true
                        description: Cursor for the next page
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````