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

# Account Management

> Managing developers and users in Epistemic Me

## Developer Accounts

### Creating a Developer Account

```python theme={null}
import epistemic_me
epistemic_me.api_key = "..."

new_developer = epistemic_me.Developer.create(
    name="John Doe",
    email="john@example.com"
)
```

### Managing Users

```python theme={null}
# Create a user
new_user = epistemic_me.User.create(
    developer_id="dev_001",
    name="Alice Smith",
    email="alice@example.com"
)
```
