> ## Documentation Index
> Fetch the complete documentation index at: https://docs.artaios.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Session

Retrieve details of a specific session.

<ParamField path="session_id" type="string" required>
  The session ID
</ParamField>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://api.artaios.ai/api/v1/sessions/session_abc123/ \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.artaios.ai/api/v1/sessions/session_abc123/",
      headers={"x-api-key": "YOUR_API_KEY"}
  )
  session = response.json()
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.artaios.ai/api/v1/sessions/session_abc123/', {
    headers: {
      'x-api-key': 'YOUR_API_KEY'
    }
  });
  const session = await response.json();
  ```
</CodeGroup>

## Response

Returns the complete session details:

```json theme={null}
{
  "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
    }
  }
}
```
