Documentation
Everything you need to build, operate, and scale AI agents
Getting Started
API Reference
Memory System
Operations
Model Routing
Security
Help
1
Create an Account
Sign up at
/signup. Free tier: 1 agent, 100 users, 7-day memory.2
Create Your First Agent
Dashboard → Create Agent. Choose a template:
- Support Agent - Customer support with escalation
- Onboarding Agent - User onboarding flows
- Billing Agent - Billing and subscription help
- Sales Agent - Lead qualification
- Scheduling Agent - Appointment booking
- Ops Agent - Internal operations
3
Get Your API Key
Settings → API Key → Generate. Keep it secure!
4
Make Your First Request
curl -X POST https://memoracore.dev/api/v1/agents/YOUR_AGENT_ID/chat \
-H "Authorization: Bearer mc_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"userId": "user_123", "message": "Hello!"}'Important: Replace YOUR_AGENT_ID with your agent's ID from the dashboard, and mc_live_YOUR_API_KEY with your API key from Settings.
5
Handle the Response
{
"message": "Hello! How can I help you today?",
"conversationId": "conv_abc123",
"agentConfidence": 0.92,
"memoryContext": {
"visibility": "summary",
"typesUsed": [],
"memoriesUsedCount": 0
}
}The message field contains the agent's response. Pass the conversationId in subsequent requests to maintain conversation context.