---
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[]

---

[API](https://skmtc.net/mozilla-ai/apis/clawbolt.md) · [All operations](https://skmtc.net/mozilla-ai/apis/clawbolt/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mozilla-ai/clawbolt/versions/327e305858ac/schema)
