---
title: "Create Conversation"
method: POST
path: "/assistant/conversations"
tags: ["assistant"]
---

# Create Conversation

`POST /assistant/conversations`

Create a new conversation owned by the caller.

## Request body

- CreateConversationRequest — Request body for creating a new conversation.
  - `title` string, nullable — Optional human-readable title.

## Response `200`

Successful Response

- ConversationResponse — Conversation row returned by the conversation CRUD endpoints. `created_by` is non-null on the wire: the column is nullable on the model (`ondelete=SET NULL`), but the lookup path filters by `created_by == caller`, so any row that reaches the response by definition has a creator.
  - `id` string, uuid4, required
  - `title` string, nullable, required
  - `created_by` string, uuid4, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/galileo/apis/galileo-api-server.md) · [All operations](https://skmtc.net/galileo/apis/galileo-api-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/galileo/galileo-api-server/versions/933e8c8e6366/schema)
