{"id":9103,"date":"2026-09-01T06:17:20","date_gmt":"2026-09-01T06:17:20","guid":{"rendered":"https:\/\/aboutknowledge.com\/?p=9103"},"modified":"2026-09-01T09:30:51","modified_gmt":"2026-09-01T09:30:51","slug":"what-is-the-odoo-api","status":"publish","type":"post","link":"https:\/\/aboutknowledge.com\/zh\/what-is-the-odoo-api\/","title":{"rendered":"What Is the Odoo API?"},"content":{"rendered":"<h2>The plain explanation<\/h2>\n<p>An <strong>API<\/strong> is a doorway into your system for other software.<\/p>\n<p>A person uses Odoo through a browser. Another program cannot do that. It needs a defined way to ask questions \u2014 &#8220;give me all unpaid invoices&#8221; \u2014 and to make changes \u2014 &#8220;create this customer&#8221;.<\/p>\n<p>That defined way is the API. Odoo has one, and it covers almost everything you can do in the interface.<\/p>\n<p>For a business owner, the practical meaning is simple: <strong>your Odoo data is not locked in.<\/strong> Other systems can work with it, and you can automate things nobody has built a button for.<\/p>\n<h2>What it makes possible<\/h2>\n<p>Some things companies actually use it for:<\/p>\n<ul>\n<li>A warehouse scanner writing stock moves directly<\/li>\n<li>A payment gateway posting confirmed payments into Odoo<\/li>\n<li>A separate website sending orders in<\/li>\n<li>A reporting tool reading live sales data<\/li>\n<li>A one-off script correcting three thousand product records<\/li>\n<li>A shipping provider writing tracking numbers back onto deliveries<\/li>\n<\/ul>\n<p>None of these require Odoo to have anticipated your situation. They only require that the data be reachable.<\/p>\n<div style=\"border:1px solid #e0e0e0;border-radius:6px;padding:18px 20px;margin:24px 0;background:#fafafa\">\n<p style=\"font-size:12px;letter-spacing:.5px;text-transform:uppercase;color:#5C3A52;font-weight:700;margin:0 0 14px\">FIGURE 1: WHAT AN API CALL ACTUALLY DOES<\/p>\n<div style=\"display:flex;flex-wrap:wrap;gap:14px\">\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">External system<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Sends a request<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Odoo checks<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Who you are and what you may do<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Odoo acts<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Reads or writes the record<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Response<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Data or confirmation returned<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<h2>The two interfaces<\/h2>\n<p>Odoo offers two ways in. You do not need to choose \u2014 your developer will \u2014 but the names come up in conversations.<\/p>\n<p><strong>XML-RPC<\/strong> is the older interface. It is stable, well documented and works from any language. Most integrations built against Odoo use it.<\/p>\n<p><strong>JSON-RPC<\/strong> is the more modern interface, and is what Odoo&#8217;s own web client uses.<\/p>\n<p>Both reach the same data and enforce the same rules. The choice is a technical preference, not a capability difference.<\/p>\n<h2>Permissions are not bypassed<\/h2>\n<p>This is the point that reassures most people, and it matters.<\/p>\n<p>An API call runs <strong>as a user<\/strong>. Whatever that user is allowed to do in the interface, the API can do. Whatever they are not allowed to do, it cannot.<\/p>\n<p>If your integration user has no access to payroll, no API call can read payroll. If a record rule limits a salesperson to their own customers, the API respects that too.<\/p>\n<p><strong>The practical implication:<\/strong> the permissions you give the integration user are the permissions the integration has. Give it the least it needs.<\/p>\n<div style=\"border:1px solid #e0e0e0;border-radius:6px;padding:18px 20px;margin:24px 0;background:#fafafa\">\n<p style=\"font-size:12px;letter-spacing:.5px;text-transform:uppercase;color:#5C3A52;font-weight:700;margin:0 0 14px\">FIGURE 2: FOUR RULES FOR API ACCESS<\/p>\n<div style=\"display:flex;flex-wrap:wrap;gap:14px\">\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Create a dedicated user<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Never use a real person&#8217;s login. When they leave, the integration should not break.<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Grant the minimum access<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Only the models the integration actually needs to touch.<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Use an API key, not a password<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Keys can be revoked individually without changing anyone&#8217;s login.<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#5C3A52;font-size:14px\">Log and review<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Know which integrations exist, what they do, and who owns each one.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<h2>API keys<\/h2>\n<p>Odoo supports <strong>API keys<\/strong> \u2014 a credential generated for a specific purpose, used instead of a password.<\/p>\n<p>Three reasons to use them:<\/p>\n<p><strong>Revocable.<\/strong> If a key leaks, you disable that one key. Nobody&#8217;s login changes.<\/p>\n<p><strong>Traceable.<\/strong> Each key has a name, so you know which integration is which.<\/p>\n<p><strong>Compatible with two-factor authentication.<\/strong> A password-based integration breaks when you enable 2FA on the account. A key does not.<\/p>\n<p>If a developer asks for a user&#8217;s actual password to build an integration, that is worth questioning.<\/p>\n<h2>What to watch for<\/h2>\n<p>Four things that cause problems in practice.<\/p>\n<p><strong>Rate and volume.<\/strong> An integration that fires a request per record will be slow and will load your server. Batching matters. If a nightly job is taking hours, this is usually why.<\/p>\n<p><strong>Error handling.<\/strong> What happens when Odoo is down for an upgrade, or a record is locked? A well-built integration retries and reports. A badly built one silently loses data, and nobody notices for weeks.<\/p>\n<p><strong>Version changes.<\/strong> Odoo&#8217;s data model changes between versions \u2014 fields get renamed, models get restructured. An integration built against version 17 may need work at version 19. Budget for this alongside your upgrade.<\/p>\n<p><strong>Nobody owning it.<\/strong> The most common real-world problem. An integration built two years ago by someone who has left, that everyone depends on and nobody understands.<\/p>\n<div style=\"border:1px solid #e0e0e0;border-radius:6px;padding:18px 20px;margin:24px 0;background:#fafafa\">\n<p style=\"font-size:12px;letter-spacing:.5px;text-transform:uppercase;color:#5C3A52;font-weight:700;margin:0 0 14px\">FIGURE 3: A HEALTHY INTEGRATION AND A FRAGILE ONE<\/p>\n<div style=\"display:flex;flex-wrap:wrap;gap:14px\">\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#0F9E96;font-size:14px\">Healthy<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Dedicated user with minimum rights<\/li>\n<li>Requests batched, not one per record<\/li>\n<li>Failures retried and reported<\/li>\n<li>A named owner and written documentation<\/li>\n<\/ul>\n<\/div>\n<div style=\"flex:1 1 200px;min-width:200px;background:#fff;border:1px solid #e6e6e6;border-radius:5px;padding:14px 16px\">\n<p style=\"margin:0 0 8px;font-weight:700;color:#B04A4A;font-size:14px\">Fragile<\/p>\n<ul style=\"margin:0;padding-left:18px;color:#5a5a5a;font-size:13px;line-height:1.6\">\n<li>Runs as a real person&#8217;s account<\/li>\n<li>One request per record, taking hours<\/li>\n<li>Silent failures nobody sees<\/li>\n<li>Built by someone who has since left<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<h2>Before you commission an integration<\/h2>\n<p>Five questions worth asking:<\/p>\n<ul>\n<li>What exactly will it read, and what will it write?<\/li>\n<li>Which user will it run as, and what access does that user need?<\/li>\n<li>What happens when it fails \u2014 retry, alert, or silently stop?<\/li>\n<li>Who owns it after delivery, and where is it documented?<\/li>\n<li>What will need checking at the next Odoo version upgrade?<\/li>\n<\/ul>\n<p>If the answers are clear, the integration will probably last. If they are vague, you are buying something that will become somebody&#8217;s problem later.<\/p>\n<h2>When not to use the API<\/h2>\n<p>Two cases where an integration is the wrong answer.<\/p>\n<p><strong>When configuration would do it.<\/strong> Odoo has automated actions, scheduled jobs and email templates built in. A surprising number of &#8220;we need an integration&#8221; requests are really settings.<\/p>\n<p><strong>When the two systems should be one.<\/strong> If you are integrating a separate stock system with Odoo&#8217;s stock, ask whether you need the separate system at all. Every integration is a permanent maintenance cost. Removing the need for one is better than building it well.<\/p>\n<h2>The short version<\/h2>\n<p>The API is what stops your data being trapped. It is well documented, it respects your permission rules, and almost anything in the interface can be done through it.<\/p>\n<p>The risks are not technical. They are organisational \u2014 integrations with too much access, no owner, and no documentation.<\/p>\n<p>Get those three right and the rest is routine.<\/p>\n<div style=\"border-left:4px solid #5C3A52;background:#F7F3F6;padding:18px 22px;margin:28px 0;border-radius:0 6px 6px 0\">\n<p style=\"margin:0 0 6px;font-weight:700;color:#5C3A52;font-size:16px\">Need Odoo to talk to another system?<\/p>\n<p style=\"margin:0;color:#5a5a5a\">Get in touch. We will scope what actually needs to move, set up properly limited access, and document it so it is not a mystery in two years.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>The plain explanation An API is a doorway into your system for other software. A person uses Odoo through a browser. Another program cannot do that. It needs a defined way to ask questions \u2014 &#8220;give me all unpaid invoices&#8221; \u2014 and to make changes \u2014 &#8220;create this customer&#8221;. That defined way is the API. [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":9104,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[25],"tags":[],"class_list":["post-9103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Odoo API Explained: What It Is &amp; What It Does<\/title>\n<meta name=\"description\" content=\"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aboutknowledge.com\/zh\/what-is-the-odoo-api\/\" \/>\n<meta property=\"og:locale\" content=\"zh_HK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is the Odoo API?\" \/>\n<meta property=\"og:description\" content=\"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aboutknowledge.com\/zh\/what-is-the-odoo-api\/\" \/>\n<meta property=\"og:site_name\" content=\"AboutKnowledge\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aboutknowledge28\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-01T06:17:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-01T09:30:51+00:00\" \/>\n<meta name=\"author\" content=\"kopraveen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kopraveen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/\"},\"author\":{\"name\":\"kopraveen\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#\\\/schema\\\/person\\\/f14efbc95a95a4cec982367fb079cdf4\"},\"headline\":\"What Is the Odoo API?\",\"datePublished\":\"2026-09-01T06:17:20+00:00\",\"dateModified\":\"2026-09-01T09:30:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/\"},\"wordCount\":1007,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/photo-1594915440248-1e419eba6611.avif\",\"articleSection\":[\"Odoo\"],\"inLanguage\":\"zh-HK\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/\",\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/\",\"name\":\"Odoo API Explained: What It Is & What It Does\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/photo-1594915440248-1e419eba6611.avif\",\"datePublished\":\"2026-09-01T06:17:20+00:00\",\"dateModified\":\"2026-09-01T09:30:51+00:00\",\"description\":\"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#breadcrumb\"},\"inLanguage\":\"zh-HK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#primaryimage\",\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/photo-1594915440248-1e419eba6611.avif\",\"contentUrl\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/photo-1594915440248-1e419eba6611.avif\",\"width\":600,\"height\":402},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/what-is-the-odoo-api\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aboutknowledge.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What Is the Odoo API?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#website\",\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/\",\"name\":\"AboutKnowledge\",\"description\":\"System Integrator You Can Trust\",\"publisher\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aboutknowledge.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-HK\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#organization\",\"name\":\"AboutKnowledge (Hong Kong) Limited\",\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/aboutknowledge.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/logo.png\",\"width\":560,\"height\":256,\"caption\":\"AboutKnowledge (Hong Kong) Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/aboutknowledge28\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/104125547\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aboutknowledge.com\\\/#\\\/schema\\\/person\\\/f14efbc95a95a4cec982367fb079cdf4\",\"name\":\"kopraveen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g\",\"caption\":\"kopraveen\"},\"url\":\"https:\\\/\\\/aboutknowledge.com\\\/zh\\\/author\\\/kopraveen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Odoo API Explained: What It Is & What It Does","description":"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/aboutknowledge.com\/zh\/what-is-the-odoo-api\/","og_locale":"zh_HK","og_type":"article","og_title":"What Is the Odoo API?","og_description":"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.","og_url":"https:\/\/aboutknowledge.com\/zh\/what-is-the-odoo-api\/","og_site_name":"AboutKnowledge","article_publisher":"https:\/\/www.facebook.com\/aboutknowledge28\/","article_published_time":"2026-09-01T06:17:20+00:00","article_modified_time":"2026-09-01T09:30:51+00:00","author":"kopraveen","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kopraveen","Est. reading time":"5 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#article","isPartOf":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/"},"author":{"name":"kopraveen","@id":"https:\/\/aboutknowledge.com\/#\/schema\/person\/f14efbc95a95a4cec982367fb079cdf4"},"headline":"What Is the Odoo API?","datePublished":"2026-09-01T06:17:20+00:00","dateModified":"2026-09-01T09:30:51+00:00","mainEntityOfPage":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/"},"wordCount":1007,"commentCount":0,"publisher":{"@id":"https:\/\/aboutknowledge.com\/#organization"},"image":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#primaryimage"},"thumbnailUrl":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2026\/09\/photo-1594915440248-1e419eba6611.avif","articleSection":["Odoo"],"inLanguage":"zh-HK","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/","url":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/","name":"Odoo API Explained: What It Is & What It Does","isPartOf":{"@id":"https:\/\/aboutknowledge.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#primaryimage"},"image":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#primaryimage"},"thumbnailUrl":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2026\/09\/photo-1594915440248-1e419eba6611.avif","datePublished":"2026-09-01T06:17:20+00:00","dateModified":"2026-09-01T09:30:51+00:00","description":"Learn what the Odoo API is in plain terms, how it connects your systems, and what it makes possible \u2014 from payment gateways to warehouse scanners.","breadcrumb":{"@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#breadcrumb"},"inLanguage":"zh-HK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/"]}]},{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#primaryimage","url":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2026\/09\/photo-1594915440248-1e419eba6611.avif","contentUrl":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2026\/09\/photo-1594915440248-1e419eba6611.avif","width":600,"height":402},{"@type":"BreadcrumbList","@id":"https:\/\/aboutknowledge.com\/what-is-the-odoo-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aboutknowledge.com\/"},{"@type":"ListItem","position":2,"name":"What Is the Odoo API?"}]},{"@type":"WebSite","@id":"https:\/\/aboutknowledge.com\/#website","url":"https:\/\/aboutknowledge.com\/","name":"AboutKnowledge","description":"System Integrator You Can Trust","publisher":{"@id":"https:\/\/aboutknowledge.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aboutknowledge.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-HK"},{"@type":"Organization","@id":"https:\/\/aboutknowledge.com\/#organization","name":"AboutKnowledge (Hong Kong) Limited","url":"https:\/\/aboutknowledge.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/aboutknowledge.com\/#\/schema\/logo\/image\/","url":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2021\/11\/logo.png","contentUrl":"https:\/\/aboutknowledge.com\/wp-content\/uploads\/2021\/11\/logo.png","width":560,"height":256,"caption":"AboutKnowledge (Hong Kong) Limited"},"image":{"@id":"https:\/\/aboutknowledge.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/aboutknowledge28\/","https:\/\/www.linkedin.com\/company\/104125547"]},{"@type":"Person","@id":"https:\/\/aboutknowledge.com\/#\/schema\/person\/f14efbc95a95a4cec982367fb079cdf4","name":"kopraveen","image":{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/secure.gravatar.com\/avatar\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1e4b2c06a01572b023ee9a6a7052f720b27e9c900dc4222fd2882d26d352bf7a?s=96&d=mm&r=g","caption":"kopraveen"},"url":"https:\/\/aboutknowledge.com\/zh\/author\/kopraveen\/"}]}},"_links":{"self":[{"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/posts\/9103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/comments?post=9103"}],"version-history":[{"count":1,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/posts\/9103\/revisions"}],"predecessor-version":[{"id":9105,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/posts\/9103\/revisions\/9105"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/media\/9104"}],"wp:attachment":[{"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/media?parent=9103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/categories?post=9103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aboutknowledge.com\/zh\/wp-json\/wp\/v2\/tags?post=9103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}