---
title: "List conversations"
method: GET
path: "/v2/api/conversations"
tags: ["Conversations"]
---

# List conversations

`GET /v2/api/conversations`

Returns a paginated list of conversations grouped by contact phone number, sorted by most recent activity.

## Query parameters

- `allo_number` string, required
- `last_activity_since` string, date-time
- `unread` boolean
- `page` integer
- `size` integer
- `extend` string

## Response `200`

List of conversations

- object
  - `data` ConversationSummary[]
    - `contact_number` string
    - `contacts` Contact[]
      - `id` string
      - `name` string
      - `company` object, nullable
        - `id` string
        - `name` string
      - `deals` object[]
        - `id` string
        - `name` string
        - `status` 'OPEN' | 'WON' | 'LOST'
    - `last_activity` string, date-time
    - `last_item` ConversationItem
      - `id` string
      - `type` 'CALL' | 'SMS'
      - `direction` 'INBOUND' | 'OUTBOUND'
      - `allo_number` string
      - `contact_number` string
      - `contacts` Contact[]
        - `id` string
        - `name` string
        - `company` object, nullable
          - `id` string
          - `name` string
        - `deals` object[]
          - `id` string
          - `name` string
          - `status` 'OPEN' | 'WON' | 'LOST'
      - `user` UserRef
        - `id` string
        - `name` string
        - `email` string
      - `date` string, date-time
      - `duration` integer, nullable
      - `result` 'ANSWERED' | 'VOICEMAIL' | 'TRANSFERRED', nullable
      - `recording_url` string, nullable
      - `summary` string, nullable
      - `tags` string[], nullable
      - `transcript` TranscriptEntry[], nullable
        - `source` 'USER' | 'EXTERNAL'
        - `time` string, date-time
        - `text` string
      - `content` string, nullable
      - `status` 'PENDING' | 'SENT' | 'DELIVERED' | 'FAILED', nullable
      - `message_type` 'SMS' | 'MMS' | 'WHATSAPP', nullable
  - `pagination` Pagination
    - `page` integer
    - `size` integer
    - `total_count` integer
    - `total_pages` integer
    - `has_more` boolean

## Other responses

- `401` — Invalid or missing API key
- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/withallo/apis/allo-api.md) · [All operations](https://skmtc.dev/withallo/apis/allo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withallo/allo-api/revisions/9aab4db82933/schema)
