Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Technical
  3. Kendrio API Explorer v 17.0
  4. Sales Conditions FAQ

Kendrio API Explorer

by Tovfikur Rahman https://github.com/tovfikur
Odoo
v 17.0 Third Party 2
Download for v 17.0 Deploy on Odoo.sh
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 1547
Technical Name KendrioAPI
LicenseLGPL-3
Websitehttps://github.com/tovfikur
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 1547
Technical Name KendrioAPI
LicenseLGPL-3
Websitehttps://github.com/tovfikur
API EXPLORER

Kendrio API Explorer

Zero-configuration introspection, documentation & live RPC recording for Odoo 17

Odoo 17 OpenAPI 3.0 Postman V2.1 Swagger UI LGPL-3

What is Kendrio API Explorer?

Kendrio API Explorer is a powerful zero-configuration module that automatically scans every installed Odoo model, field, relation, view, action, menu, HTTP route, ORM method, access rule, record rule, state machine, and context/domain pattern — then exposes everything as a live interactive REST API, an OpenAPI 3.0 specification, and a Postman Collection.

Stop writing API documentation by hand. Install the module, navigate to API Explorer → Swagger UI, and every model in your Odoo instance is already documented with real schema definitions, example payloads, authentication scripts, and try-it-out support.

Key Features

🔍

Full Model Introspection

Scans every installed model: fields, types, relations, required/readonly/tracking flags, and Python-level ORM methods.

📄

OpenAPI 3.0 Generator

Live OpenAPI 3.0 spec with model schemas, JSON-RPC & XML-RPC endpoint docs, and full CRUD examples.

📬

Postman Collection V2.1

Generates a ready-to-import Postman collection with session auth pre-request script and per-model CRUD requests.

🖥️

Swagger UI

Embedded Swagger UI at /kendrio/swagger — explore and test every endpoint directly in the browser.

⚡

Live RPC Interceptor

Records real call_kw payloads and responses with timing. Survives transaction rollbacks via an isolated cursor.

🔀

State Machine Detector

Detects workflows: selection state fields, stage_id Many2ones, statusbar widgets, and state-dependent buttons.

🛡️

ACL & Record Rules

Lists access rules and record rules per model with group membership and domain expressions.

🗺️

Route & Menu Scanner

Enumerates all HTTP routes from the Werkzeug routing map and all UI menu items with their actions.

📐

Context/Domain Analyzer

Extracts context keys and domain patterns from field definitions, view arch, and action defaults.

Quick Start

1

Install the module

Go to Apps, search for Kendrio API Explorer, click Install. Requires Odoo 17 CE or EE.

2

Open the Swagger UI

Navigate to API Explorer → Swagger UI in the main menu, or go directly to /kendrio/swagger. Requires Administrator access.

3

Export Postman Collection

Download a ready-to-use Postman collection from /kendrio/api/postman.json or via the Swagger UI download button.

4

Enable RPC Recording (optional)

Go to API Explorer → RPC Logs → Settings, enable recording, and every ORM call from the web client will be logged with full payloads.

All endpoints are protected by Settings / Technical (base.group_system) access. Only Odoo Administrators can use the API Explorer.

REST API Endpoints

All endpoints are GET and require an active Odoo session with Administrator rights. The base URL is your Odoo instance root (e.g. https://odoo.example.com).

Method Path Description
GET /kendrio/swagger Interactive Swagger UI (HTML)
GET /kendrio/api/openapi.json Full OpenAPI 3.0 specification (JSON)
GET /kendrio/api/postman.json Postman Collection V2.1 download
GET /kendrio/api/models List all installed models
GET /kendrio/api/models/{name} Model detail (fields, methods, relations)
GET /kendrio/api/models/{name}/fields All field definitions for a model
GET /kendrio/api/models/{name}/methods ORM and custom methods with signatures
GET /kendrio/api/models/{name}/views/{type} Parsed view arch (form, tree, kanban, search)
GET /kendrio/api/models/{name}/rpc RPC example payload for any method
GET /kendrio/api/models/{name}/state-machine State machine definition and transitions
GET /kendrio/api/models/{name}/context Context keys and domain patterns
GET /kendrio/api/models/{name}/actions All actions bound to a model
GET /kendrio/api/routes All HTTP routes from the routing map
GET /kendrio/api/menus UI menu tree
GET /kendrio/api/actions All actions (window, server, client)
GET /kendrio/api/acl Model access rules (ir.model.access)
GET /kendrio/api/acl/rules Record rules (ir.rule) with domains
GET /kendrio/api/modules Installed modules with metadata
GET /kendrio/api/server-actions Server actions (ir.actions.server)
GET /kendrio/api/rpc-logs Recent RPC log entries
GET /kendrio/api/rpc-logs/status RPC logging status and log count
POST /kendrio/api/rpc-logs/toggle Enable/disable RPC recording

Example: Fetch a Model's Schema

# Using Python requests
import requests

session = requests.Session()

# 1. Authenticate
session.post("https://odoo.example.com/web/session/authenticate", json={
    "jsonrpc": "2.0", "method": "call",
    "params": {"db": "mydb", "login": "admin", "password": "admin"}
})

# 2. Get sale.order schema
r = session.get("https://odoo.example.com/kendrio/api/models/sale.order")
model = r.json()

# 3. Get OpenAPI spec for specific models
r = session.get("https://odoo.example.com/kendrio/api/openapi.json",
                params={"models": "sale.order,account.move"})
spec = r.json()  # OpenAPI 3.0 dict

Technical Requirements

Odoo Version 17.0 Community or Enterprise
Python 3.10 or higher
Dependencies base, web (standard Odoo modules — no extra pip packages)
Access Odoo Administrator (Settings / Technical) — base.group_system
License LGPL-3
Kendrio API Explorer v17.0.2.0.0 · LGPL-3 · github.com/tovfikur/Kendrio-API · tovfikur@gmail.com

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with