> ## 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.

# Create from Default Agent

Create a new session using the server-default agent configuration (loaded from static YAML). No agent key is required. This is commonly used by the playground builder and contexts that need the default agent.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://api.artaios.ai/api/v1/sessions/default-agent/ \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</CodeGroup>

## Response

Returns the newly created session information.

```json theme={null}
{
  "success": true,
  "session_id": "sess_1234567890",
  "config_hash": "a1b2c3d4"
}
```
