API Keys

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

Python SDK

import epistemic_me
epistemic_me.api_key = "your-api-key"

TypeScript SDK

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