---
title: "Get Conversation"
method: GET
path: "/api/user/conversation"
---

# Get Conversation

`GET /api/user/conversation`

Return the user's conversation transcript, or an empty shape if none yet.

Returning an empty shape (rather than 404) lets the frontend render
the chat input without special-casing the first-message-ever flow.
The session row is created by the agent pipeline on the first
inbound message, not by this endpoint.

## Response `200`

Successful Response

- SessionDetailResponse
  - `session_id` string, required
  - `user_id` string, required
  - `created_at` string, required
  - `last_message_at` string, required
  - `channel` string
  - `messages` SessionMessage[], required
    - `seq` integer, required
    - `direction` string, required
    - `body` string
    - `timestamp` string, required
    - `tool_interactions` object[]

## Changes

- **2026-05-26** `c4fff2d1ea9a` — 1 warning
  - removed the optional property `initial_system_prompt` from the response with the `200` status
- **2026-05-04** `d5f7b9eb1987` — 1 info
  - endpoint added
- **2026-03-20** `4c528359213d` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/mozilla-ai/apis/clawbolt/changes/api/user/conversation/get.md)

---

[API](https://skmtc.dev/mozilla-ai/apis/clawbolt.md) · [All operations](https://skmtc.dev/mozilla-ai/apis/clawbolt/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mozilla-ai/clawbolt/revisions/579c110de1b8/schema)
