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
    • Estate 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. Extra Tools
  3. Odoo dynamic rest API v 18.0
  4. Sales Conditions FAQ

Odoo dynamic rest API

by Micra digital https://www.micra.digital
Odoo

$ 30.09

v 18.0 Third Party
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 313
Technical Name Odoo_rest_api
LicenseLGPL-3
Websitehttps://www.micra.digital
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 313
Technical Name Odoo_rest_api
LicenseLGPL-3
Websitehttps://www.micra.digital

Odoo 18 REST API Module

Powerful JSON-RPC Integration for Odoo 18

The Odoo 18 REST API Module provides a comprehensive RESTful interface designed specifically for Odoo 18 using JSON-RPC. Built to leverage Odoo 18's latest features, it enables secure integration with external systems, mobile apps, and third-party services while maintaining Odoo's security model.

🚀 Performance Note: Optimized specifically for Odoo 18's architecture, the module adds minimal overhead with API response times averaging under 100ms for most operations.

Key Features

★

Odoo 18 Exclusive

Built specifically for Odoo 18's architecture with support for all new features and performance improvements.

🔒

Secure Authentication

JWT token-based authentication with user-level permissions and configurable expiration.

🗄️

Full CRUD Operations

Create, Read, Update, Delete for any Odoo model with comprehensive field support.

🔍

Advanced Search

Filter records with complex domain filters, sorting, and field selection.

⚙️

Batch Create Operations

Perform multiple Create actions in a single API call for improved efficiency.

💻

Custom Endpoints

Extend the API with your own endpoints for specialized functionality.

Module Documentation

📋 Overview

🚀 Performance Note: Optimized specifically for Odoo 18's architecture, the module adds minimal overhead with API response times averaging under 100ms for most operations.

Key Features:

  • Odoo 18 Exclusive - Built specifically for Odoo 18's architecture
  • Secure authentication - JWT token-based authentication with user-level permissions
  • Full CRUD operations - Create, Read, Update, Delete for any Odoo model
  • Advanced search capabilities - Filter records with complex domain filters
  • JSON-RPC compliance - Industry-standard protocol for maximum compatibility
  • Batch Create operations - Perform multiple Create actions in a single API call
  • Custom endpoints - Extend the API with your own endpoints
  • Rate limiting - Prevent abuse with configurable request limits
  • CORS support - Cross-origin resource sharing for web applications

Odoo 18 Specific Enhancements:

  • Utilizes Odoo 18's improved ORM performance
  • Supports Odoo 18's new security features
  • Optimized for Odoo 18's Python 3.10+ environment
  • Leverages Odoo 18's enhanced caching mechanisms

⚙️ Installation Guide

  1. Download the module from our repository or the Odoo App Store
  2. Place it in your Odoo 18 addons directory: /path/to/odoo18/addons/
  3. Update your app list: Go to Apps → Update Apps List
  4. Install the REST API Module from the Apps menu
  5. Configure user permissions: Settings → Users & Companies → Users
    • Enable "API Access" for relevant users
    • Set appropriate access rights for API users
  6. Restart your Odoo 18 service
  7. Verify installation by accessing: https://your-odoo-domain.com/api/docs

System Requirements:

  • Odoo 18.0 (latest version recommended)
  • Python 3.10+
  • PostgreSQL 12+
  • Minimum 2GB RAM for production use

📚 API Documentation

All API requests are made to the base URL:

https://your-odoo-domain.com/api/docs

Authentication:

To authenticate, send a POST request to /api/login with credentials:

{
  "jsonrpc": "2.0",
  "method": "call",
  "params": {
    "db": "your_db_name",
    "login": "api_user@example.com",
    "password": "secure_password"
  }
}

Successful authentication returns a JWT access token valid for 24 hours by default.

Available Endpoints:

POST /api/<model>/search - Search records

Parameters: domain (array), limit (int), offset (int), order_by (string), fields (array)

GET /api/<model>/read - Read record by ID

Parameters: id (int), fields (array)

POST /api/<model>/create - Create new record

Parameters: values (object)

PUT /api/<model>/update - Update existing record

Parameters: id (int), values (object)

DELETE /api/<model>/delete - Delete record

Parameters: id (int)

POST /api/<model>/call_method - Call model method

Parameters: method (string), args (array), kwargs (object)

💡 Usage Examples

Example Request:

Search for companies with more than 10 employees:

{
  "jsonrpc": "2.0",
  "method": "call",
  "params": {
    "domain": [
        ["is_company", "=", true],
        ["employee_count", ">", 10]
    ],
    "limit": 5,
    "order_by": "name asc",
    "fields": ["id", "name", "email", "phone"]
  }
}

Example Response:

{
  "jsonrpc": "2.0",
  "id": null,
  "result": {
    "status": 200,
    "message": "Success",
    "count": 3,
    "data": [
      {
        "id": 45,
        "name": "Tech Solutions Inc.",
        "email": "info@techsolutions.com",
        "phone": "+1 800 123 4567"
      }
    ]
  }
}
💡 Tip: We provide ready-to-use Swagger documentation to help you get started quickly with the API.

Technical Requirements

Odoo Version Compatible with Odoo 18.0
Python Version Python 3.10 or higher
Dependencies PyJWT, requests, python-dateutil

Module Screenshots

Visual overview of the REST API module features and interface in Odoo 18.

token-response
Response Token
API Endpoint Management
Endpoint Management
API Access Logs
API response
Swagger UI Interface
Interactive Documentation

🛠 Support & Customization

Need custom endpoints, specialized functionality, or assistance with Odoo 18 integration? Our team provides expert support and customization services.

Standard Support: Included with module purchase (6 months)

Premium Support: 24/7 emergency support with 1-hour response time

Contact us: hello@micra.digital

Odoo 18 REST API Module | © 2025 Micra Digital.

Exclusively for Odoo 18 | MIT License

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 or have a question related to your purchase, please use the support page.
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