---
title: "Get Conversation Endpoint"
method: GET
path: "/api/v1/remy/conversations/{conversation_id}"
tags: ["remy", "remy"]
---

# Get Conversation Endpoint

`GET /api/v1/remy/conversations/{conversation_id}`

One conversation with its full message thread — for an email conversation, first checks the
sending mailbox via IMAP for any new creator reply and logs it before returning the thread.

## Path parameters

- `conversation_id` string, required

## Response `200`

Successful Response

- ConversationDetailDTO
  - `id` string, required
  - `creator_id` string, required
  - `platform` string, required
  - `channel` string, required
  - `status` string, required
  - `agreed_price` number, nullable
  - `handle` string, nullable
  - `display_name` string, nullable
  - `profile_pic_url` string, nullable
  - `followers` integer, nullable
  - `last_message_at` string, date-time, nullable
  - `last_message_preview` string, nullable
  - `last_message_role` string, nullable
  - `campaign_id` string, required
  - `messages` MessageDTO[]
    - `id` string, required
    - `role` string, required
    - `content` string, nullable
    - `channel` string, required
    - `sending_account_id` string, nullable
    - `provider_message_id` string, nullable
    - `sent_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/brandbooster/apis/fastapi.md) · [All operations](https://skmtc.dev/brandbooster/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/brandbooster/fastapi/revisions/a9374f6fe96c/schema)
