Get a conversation plus its latest 50 messages.
GET
/api/advisor/conversations/{id}
const url = 'https://api.tradr.cloud/api/advisor/conversations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';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-32D5F69181C0Returns { conversation, messages, nextCursor }. 404 if the conversation does not exist OR is owned by another user (identical envelope — no information leak).
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”Conversation with its newest message page.
Conversation not found (or not owned).