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

# Register

> Create a new account and get an API key.

<ParamField body="email" type="string" required>Your email address.</ParamField>
<ParamField body="password" type="string" required>Password (min 6 characters).</ParamField>

## Response

```json theme={null}
{
  "user_id": "abc123",
  "api_key": "kyma-your-new-api-key",
  "session_token": "ks-your-session-token"
}
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://kymaapi.com/v1/auth/register \
    -H "Content-Type: application/json" \
    -d '{"email": "you@email.com", "password": "your_password"}'
  ```
</RequestExample>
