List a conversation's messages (newest-first, cursor-paginated).
GET
/api/advisor/conversations/{id}/messages
const url = 'https://api.tradr.cloud/api/advisor/conversations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/messages?limit=50';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.tradr.cloud/api/advisor/conversations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/messages?limit=50'Cursor encodes the (created_at, id) tuple of the last-seen message. Default limit 50, max 100. 404 if the conversation is not owned.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Query Parameters
Section titled “Query Parameters”cursor
string
limit
integer
Responses
Section titled “Responses”Paginated message page.
Conversation not found (or not owned).