agent-sessions
List Agent Conversations
List all conversation sessions for an agent.
Returns a paginated list of conversations with summary information. Use this to:
- View conversation history
- Audit agent interactions
- Find specific conversations
- Track agent usage
Example response:
{
"sessions": [
{
"conversation_id": "conv-123",
"created_at": "2025-11-25T10:00:00Z",
"updated_at": "2025-11-25T10:05:00Z",
"message_count": 12,
"last_message_preview": "Thank you for your help!"
}
],
"total": 45,
"limit": 10,
"offset": 0
}
GET
List Agent Conversations
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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Number of sessions to return
Required range:
1 <= x <= 100Offset for pagination
Required range:
x >= 0Previous
Get Conversation DetailGet full conversation history with all messages.
Returns complete conversation transcript including:
- All user messages
- All agent responses
- Tool executions
- Timestamps
- Metadata
Use this for:
- Reviewing agent performance
- Debugging conversations
- Customer service audits
- Training data collection
Example response:
```json
{
"conversation_id": "conv-123",
"agent_id": "agent-456",
"created_at": "2025-11-25T10:00:00Z",
"updated_at": "2025-11-25T10:05:00Z",
"messages": [
{
"role": "user",
"content": "What is your refund policy?",
"timestamp": "2025-11-25T10:00:00Z"
},
{
"role": "assistant",
"content": "Our refund policy...",
"timestamp": "2025-11-25T10:00:02Z",
"metadata": {"selected_tool": null, "execution_time_ms": 850}
}
]
}
```
Next
List Agent Conversations