List user conversations
Conversations
List Conversations
Returns the authenticated user’s conversations ordered by recency with optional status filtering, pagination, and search. Use the q parameter to search by title or preview. Supports both Auth0 JWT and device-based authentication.
GET
List user conversations
Returns the authenticated user’s conversations ordered byDocumentation Index
Fetch the complete documentation index at: https://docs.handauncle.com/llms.txt
Use this file to discover all available pages before exploring further.
lastMessageAt. Use
status, limit, offset, sortBy, and sortOrder to replicate the in-app
sidebar view while keeping pagination metadata in sync.
Use the optional q parameter to perform a lightweight title/preview search
across conversations. When q is provided, the endpoint filters results by
matching the query string against conversation titles and preview text.
Response Fields
Each conversation in the list includes:type:'chat'or'second_opinion'- Conversation typeinputType:'text','file', or'voice'- How the conversation was initiatedprepromptKey: The pre-prompt used (if any) when creating the conversation
- Display appropriate icons based on input type (e.g., file icon for file uploads)
- Show pre-prompt badges in the UI
- Filter/group conversations by type or input method
- Track analytics on user engagement patterns
Authentication
Supports both authentication methods:- Auth0 JWT:
Authorization: Bearer <token>(registered users) - Device-based:
x-device-id,x-user-id,x-platformheaders (guest users)
Authorizations
Auth0 access token for registered users.
Query Parameters
Number of conversations to return (1-100).
Required range:
1 <= x <= 100Offset to start listing from.
Required range:
x >= 0Filter conversations by lifecycle status.
Available options:
active, archived, deleted Field used for ordering results.
Available options:
lastMessageAt, createdAt Sort order.
Available options:
asc, desc Search query string for filtering by title or preview (case-insensitive).
Required string length:
1 - 200