Skip to main content

Documentation Index

Fetch the complete documentation index at: https://epistemicme.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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'
});