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

# List conversations

`GET /v2/conversations`

Lists the current user's direct-message conversations from their connected social accounts, ordered by last activity time (most recent first). Supports cursor-based pagination and filtering by platform and account.

## Query parameters

- `limit` integer
- `cursor` string
- `platform` 'facebook' | 'instagram'
- `accountId` string

## Response `200`

Default Response

- object
  - `items` object[], required — List of conversations.
    - `accountId` string, required — ID of the social account this conversation belongs to.
    - `createdAt` string, required
    - `id` string, required
    - `participants` object[], required
      - `id` string, nullable, required — Platform-native ID of the participant.
      - `name` string, nullable, required — Display name of the participant.
      - `profileImageUrl` string, nullable, required
      - `username` string, nullable, required — Platform handle / @username of the participant.
    - `platform` 'facebook' | 'instagram', required
    - `updatedAt` string, required
  - `cursor` string — Cursor for the next page. Absent when there are no more conversations.

## Other responses

- `403` — Forbidden
- `404` — Not found
- `422` — Validation error
- `500` — Server error

---

[API](https://skmtc.net/blotato/apis/blotato-api.md) · [All operations](https://skmtc.net/blotato/apis/blotato-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/blotato/blotato-api/revisions/c93447ba6b9d/schema)
