Skip to main content
GET
/
api
/
v2
/
agents
/
{agent_id}
curl -X GET "http://localhost:8000/api/v2/agents/customer-support" \
  -H "Authorization: Bearer your_api_key"
{
  "agent_id": "customer-support",
  "created_at": "2025-03-25T10:30:00Z",
  "memory_count": 42
}

Overview

Return details for one agent.

Authentication

  • Authorization: Bearer your_api_key

Path Parameters

agent_id
string
required
Agent identifier.
curl -X GET "http://localhost:8000/api/v2/agents/customer-support" \
  -H "Authorization: Bearer your_api_key"
{
  "agent_id": "customer-support",
  "created_at": "2025-03-25T10:30:00Z",
  "memory_count": 42
}

Response Fields

agent_id
string
Agent ID.
created_at
string
Creation timestamp.
memory_count
integer
Stored memory count.