Skip to main content
Retrieve details of a specific session.
session_id
string
required
The session ID
curl -X GET https://api-be.atthene.com/api/v1/sessions/session_abc123/ \
  -H "x-api-key: YOUR_API_KEY"

Response

Returns the complete session details:
{
  "session_id": "session_abc123",
  "config_hash": "a1b2c3d4e5f6",
  "created_at": "2025-01-15T10:30:00Z",
  "status": "active",
  "agent_config": {
    "name": "Support Session",
    "agent_type": "llm_agent",
    "system_prompt": "You are a helpful customer support agent.",
    "llm_config": {
      "model": "gpt-4o",
      "temperature": 0.7
    }
  }
}