GET
https://app.evoriqa.com/api/v1/conversations/{conversationId}/messagesPoll a conversation's messages
Returns messages newer than the `after`/`afterId` cursor plus the conversation's handoff status — a polling cursor for live views.
Requires scope conversations:read
Warning:
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| conversationId | path | string uuid | Required | — | The conversation's id. |
| after | query | string date-time | Optional | — | ISO timestamp; return messages created after it. |
| afterId | query | string uuid | Optional | — | Message id tiebreak for the timestamp cursor. |
Request
curl
curl "https://app.evoriqa.com/api/v1/conversations/{conversationId}/messages" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/conversations/{conversationId}/messages", {
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();Python
import os
import requests
res = requests.get(
"https://app.evoriqa.com/api/v1/conversations/{conversationId}/messages",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"messages": [
{
"id": "2e4f6a8c-1b3d-4e5f-9a0b-7c8d9e0f1a2b",
"role": "user",
"content": "How do refunds work?",
"createdAt": "2026-08-09T14:02:11.000Z"
}
],
"handoff": {
"requested": false
}
}
}