Skip to main content

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 URLYour Odoo instance URLhttps://mycompany.odoo.com
DatabaseDatabase namemycompany
UsernameOdoo user loginadmin@mycompany.com
API KeyOdoo user API keyabc123...
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:

  1. Select your Odoo connection
  2. Choose which models the key can access
  3. Set permissions per model (read, create, write, delete)
  4. Set request limits
  5. 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.