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

# Authentication

> Authenticating with the Epistemic Me API

## API Keys

All interactions with Epistemic Me require authentication using an API key.

### Python SDK

```python theme={null}
import epistemic_me
epistemic_me.api_key = "your-api-key"
```

### TypeScript SDK

```typescript theme={null}
const client = new EpistemicMeClient({
  baseUrl: 'http://localhost:8080',
  apiKey: 'your-api-key'
});
```
