Build with Moo-AI.
Create a free Moo-AI developer account, generate secure API keys, build against the local Moo-AI backend, and upgrade to Pro for $9.99 per month.
Moo-AI Models
Model access is controlled by the plan attached to the developer account that owns each API key.
moo-mini
Fast everyday AI for chat, lightweight apps, extraction and simple generation.
moo-core
General-purpose Moo-AI for development, analysis and production applications.
moo-reason
Higher-effort reasoning for difficult analysis and multi-step tasks.
Developer Pricing
API keys automatically inherit the current plan of their owning developer account.
Free
Create an account and generate API keys immediately.
- moo-mini
- Instant + Standard reasoning
- 10 requests/minute
- 100 requests/day
- 100K monthly tokens
Moo-AI Pro
More models, Deep reasoning, and higher API limits.
- moo-mini + moo-core + moo-reason
- Instant / Standard / Deep
- 60 requests/minute
- 3,000 requests/day
- 2M monthly tokens
Business
Higher limits for organizations and production workloads.
- All Moo-AI models
- All reasoning levels
- 180 requests/minute
- 20,000 requests/day
- 20M monthly tokens
API Quickstart
Generate a key from your dashboard, then send it as a Bearer token.
curl -X POST https://moozonian.com/moo-ai/v1/chat/completions \
-H "Authorization: Bearer moo_sk_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model":"moo-mini",
"reasoning_effort":"standard",
"messages":[{"role":"user","content":"Hello Moo-AI"}]
}'