Agent skill · Backend & API

odoo-rpc-api

Expert on Odoo's external JSON-RPC and XML-RPC APIs. Covers authentication, model calls, record CRUD, and real-world integration examples in Python, JavaScript, and curl.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill odoo-rpc-api --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/odoo-rpc-api/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Odoo RPC API ## Overview Odoo exposes a powerful external API via JSON-RPC and XML-RPC, allowing any external application to read, create, update, and delete records. This skill guides you through authenticating, calling models, and building robust integrations. ## When to Use This Skill - Connecting an external app (e.g., Django, Node.js, a mobile app) to Odoo. - Running automated scripts to import/export data from Odoo. - Building a middleware layer between Odoo and a third-party platform. - Debugging API authentication or permission errors. ## How It Works 1. **Activate**: Mention `@odoo-rpc-api` and describe the integration you need. 2. **Generate**: Get copy-paste ready RPC call code in Python, JavaScript, or curl. 3. **Debug**: Paste an error and get a diagnosis with a corrected call. ## Examples ### Example 1: Authenticate and Read Records (Python) ```python import os import xmlrpc.client url = 'https://myodoo.example.com' db = 'my_database' username = 'admin' password = os.environ["ODOO_API_KEY"] # Use API keys, not passwords, in production # Step 1: Authenticate common = xmlrpc.client.ServerProxy(f'{url}/xmlrpc/2/common') uid = common.authenticate(db, username, password,

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Examples
  5. Example 1: Authenticate and Read Records (Python)
  6. Example 2: Create a Record (Python)
  7. Example 3: JSON-RPC via curl
  8. Best Practices
  9. Limitations
Commands it runs
curl -X POST https://myodoo.example.com/web/dataset/call_kw \
Odoo 16+ also supports the /web/dataset/call_kw endpoint but
prefer /web/dataset/call_kw for model method calls.
More from agentic-awesome-skills
All skills →
About this skill
What does the odoo-rpc-api skill do?

Expert on Odoo's external JSON-RPC and XML-RPC APIs. Covers authentication, model calls, record CRUD, and real-world integration examples in Python, JavaScript, and curl.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill odoo-rpc-api --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going