Skip to main content
GET
/
chat
/
conversations
/
{conversationId}
Get conversation messages
curl --request GET \
  --url https://platform.agentictrust.com/api/v1/chat/conversations/{conversationId} \
  --header 'x-api-key: <api-key>'
{
  "conversationId": "<string>",
  "messages": [
    {
      "id": "<string>",
      "role": "user",
      "content": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

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

Path Parameters

conversationId
string
required

The conversation ID.

Response

Conversation with messages.

conversationId
string
messages
object[]