Skip to content

List the authenticated user's conversations (cursor-paginated).

GET
/api/advisor/conversations
curl --request GET \
--url 'https://api.tradr.cloud/api/advisor/conversations?limit=25'

Returns conversations sorted by updatedAt descending with cursor-based pagination. Default limit 25, max 100. Response: { items: ConversationListItem[], nextCursor: string | null }.

cursor
string
limit
integer
default: 25 >= 1 <= 100

Paginated conversation list.

Malformed cursor or limit.