Skip to main content
GET
/
agents
/
{agent_id}
/
conversations
/
{conversation_id}
Get Conversation Detail
curl --request GET \
  --url https://api.example.com/agents/{agent_id}/conversations/{conversation_id} \
  --header 'Authorization: Bearer <token>'
{
  "conversation_id": "<string>",
  "agent_id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "messages": [
    {
      "role": "<string>",
      "content": "<string>",
      "timestamp": "<string>",
      "metadata": {}
    }
  ],
  "metadata": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required
conversation_id
string
required

Response

Successful Response

Full conversation with all messages.

conversation_id
string
required
agent_id
string
required
created_at
string
required
updated_at
string
required
messages
Message · object[]
required
metadata
Metadata · object