Getting Started
Connect your first AI agent to Odoo in under 5 minutes.
1
Create your account
Sign up at portal.kmee.ai (or click "Get Started Free" on the homepage). You'll get a free Basic plan with 1 Odoo connection and 1,000 requests/day.
Tip: No credit card required. Start free and upgrade later.
2
Add your Odoo connection
In the portal, go to Connections → Add Connection and enter:
| Field | Value | Example |
|---|---|---|
| Odoo URL | Your Odoo instance URL | https://mycompany.odoo.com |
| Database | Database name | mycompany |
| Username | Odoo user login | admin@mycompany.com |
| API Key | Odoo user API key | abc123... |
How to get an Odoo API key: In Odoo, go to Settings → Users → Select your user → Account Security → New API Key.
3
Scan models
Click "Scan Now" on your connection. KMEE will discover all installed models and fields in your Odoo instance — just like Metabase auto-discovery.
After scanning, you'll see categories: Sales, Inventory, Accounting, CRM, and more.
4
Create an API key
Go to API Keys → Create Key. The wizard guides you through:
- Select your Odoo connection
- Choose which models the key can access
- Set permissions per model (read, create, write, delete)
- Set request limits
- Generate the key
Important: Copy the key immediately — it won't be shown again. Store it securely.
5
Test it
Quick test with curl:
Test your API key bash
curl -X POST https://gateway.kmee.ai/api/v1/search_read \
-H "X-API-Key: YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"model": "res.partner",
"domain": [["customer_rank", ">", 0]],
"fields": ["name", "email", "phone"],
"limit": 5
}' If you see a JSON response with your customers, you're ready! Now set up ChatGPT or Claude.