Skip to content

Getting Started

Authentication

Magic links, API keys, rate limits, and BYOK architecture.

Last updated: March 2026

Magic Link Sign-In

MetaMemory uses passwordless authentication via magic links:

POST https://api.metamemory.tech/v1/auth/magic-link
{ "email": "you@company.com" }

Check your email and click the link. You'll be redirected to the dashboard with a fresh API key.

Note: Each sign-in rotates your API key. The previous key is immediately invalidated.

API Key Format

API keys follow the format mm_live_<32 hex chars>. Include it in every request:

Authorization: Bearer mm_live_your_key_here

Keys are SHA-256 hashed before storage — MetaMemory never stores your plaintext key.

Rate Limits

TierRequests/minDaily MemoriesMonthly Queries
Free1201001,000
Pro600Unlimited50,000
Enterprise3,000UnlimitedUnlimited

Rate limit headers are included in every response:

  • X-RateLimit-Limit — your tier's limit
  • X-RateLimit-Remaining — remaining requests
  • X-RateLimit-Reset — when the window resets

Tenant Isolation

Every request is scoped to your tenant. Your memories, conversations, and episodes are completely isolated — no other tenant can access your data. Vector search is namespace-partitioned and all database queries filter by tenantId.

Memory that gets smarter over time

Two lines of MCP config. No provider keys required during the v1 beta. Your AI remembers across sessions — and the system learns which retrieval works best for you.