> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hitheo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Conversations

> List all conversations for the authenticated user.

Returns all conversations for the authenticated user.

## Authentication

Requires a Bearer token. See [Authentication](/api-reference/authentication).

## Request Example

<CodeGroup>
  ```bash curl theme={null}
  curl https://www.hitheo.ai/api/v1/conversations \
    -H "Authorization: Bearer $THEO_API_KEY"
  ```

  ```typescript SDK theme={null}
  const conversations = await theo.conversations();
  ```
</CodeGroup>

## Response

<ResponseField name="conversations" type="object[]">
  Array of conversation objects with `id`, `title`, `createdAt`, `updatedAt`, and message count.
</ResponseField>

## Endpoint

`GET /api/v1/conversations`

Requires authentication via Bearer token. See [Authentication](/api-reference/authentication).
