Skip to main content
GET
/
chat
/
conversations
List conversations
curl --request GET \
  --url https://platform.agentictrust.com/api/v1/chat/conversations \
  --header 'x-api-key: <api-key>'
{
  "conversations": [
    {
      "id": "<string>",
      "status": "ACTIVE",
      "messageCount": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "lastMessagePreview": "<string>",
      "lastMessageRole": "USER"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.

Query Parameters

userId
string
required

External user ID to filter conversations.

Minimum string length: 1

Response

List of conversation summaries.

conversations
object[]