Get Started in 5 Minutes
Curate-Me is an AI gateway that sits between your app and LLM providers. You get cost tracking, rate limiting, PII scanning, and model governance — zero code changes.
1. Create Your Account
Sign up at dashboard.curate-me.ai/signup to get your API key and gateway URL.
2. Swap Your Base URL
Replace your LLM provider’s base URL with the Curate-Me gateway:
# Before (direct to OpenAI):
OPENAI_BASE_URL=https://api.openai.com/v1
# After (through Curate-Me):
OPENAI_BASE_URL=https://api.curate-me.ai/v13. Add Your Gateway Key
Include your X-CM-API-Key header in every request:
curl https://api.curate-me.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-CM-API-Key: YOUR_GATEWAY_KEY" \
-H "X-Provider-Key: YOUR_OPENAI_KEY" \
-d '{
"model": "gpt-4o",
"messages": [{"role": "user", "content": "Hello!"}]
}'4. Check Your Dashboard
Visit dashboard.curate-me.ai to see:
- Request logs and latency
- Cost tracking per model
- Governance policy status
- Rate limit usage
5. Configure Governance
Your account starts with sensible defaults:
| Policy | Default |
|---|---|
| Rate limit | 100 req/min |
| Daily budget | $10/day |
| PII scanning | Enabled (block) |
| HITL threshold | $5/request |
Customize these in Gateway Settings → Policies in your dashboard.