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
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 >= 0List Agent Conversations