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

# Create account

> POST /accounts/create

Create a new account. Returns a `credit_id` and an `api_key`. No authentication
required.

```
POST https://api.heyaskr.ai/accounts/create
```

## Response

<ResponseField name="credit_id" type="string">Public balance identifier.</ResponseField>
<ResponseField name="api_key" type="string">Secret key for API calls.</ResponseField>

```json theme={null}
{ "credit_id": "cid_...", "api_key": "sk_..." }
```

<Warning>Store the `api_key` securely, because it authenticates spending.</Warning>
