{"id":464173,"date":"2024-09-20T13:22:51","date_gmt":"2024-09-20T13:22:51","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=464173"},"modified":"2025-05-02T06:44:46","modified_gmt":"2025-05-02T06:44:46","slug":"api-mesh-adobe-commerce-app-builder","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/","title":{"rendered":"API Mesh &#8211; Adobe Commerce App Builder"},"content":{"rendered":"\n<p><strong>API Mesh<\/strong> is a core feature of Adobe Commerce App Builder that aggregates multiple APIs into a unified GraphQL interface.<\/p>\n\n\n\n<p>It allows developers to connect Adobe Commerce&#8217;s native REST and <a href=\"https:\/\/webkul.com\/blog\/graphql-implementation-in-magento2\/\">GraphQL APIs<\/a> with external systems, such as third-party shipping, CRM, ERP, and inventory management systems.<\/p>\n\n\n\n<p>These systems are then exposed through a single, unified endpoint.<\/p>\n\n\n\n<p>By consolidating multiple APIs into one, API Mesh helps simplify the complexity of integrating with multiple systems, reduces latency, and enhances overall performance.<\/p>\n\n\n\n<p>Developers no longer need to handle individual API calls separately for each system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Benefits of Adobe Commerce API Mesh<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Unified API Access<\/h3>\n\n\n\n<p>API Mesh allows developers to access multiple APIs through a single GraphQL endpoint, providing a consolidated and simplified way to interact with Adobe Commerce and other third-party APIs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">GraphQL Interface<\/h3>\n\n\n\n<p>Even if the underlying APIs are REST-based (such as <a href=\"https:\/\/webkul.com\/blog\/magento2-rest-api\/\">Magento 2 REST APIs<\/a> or third-party APIs), API Mesh exposes everything via GraphQL.<\/p>\n\n\n\n<p>This makes it easier for developers to query data from different sources and fetch exactly what they need in a single query.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Data Aggregation and Transformation<\/h3>\n\n\n\n<p>You can aggregate data from Adobe Commerce and external systems like ERPs, PIMs (Product Information Management), or shipping services, transforming it into a single GraphQL schema. <\/p>\n\n\n\n<p>This enables seamless integration and better consistency in how data is consumed by applications.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Improved Performance<\/h3>\n\n\n\n<p>API Mesh supports caching and data batching, which can significantly reduce the number of API calls and improve overall performance, especially for front-end applications like eCommerce storefronts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Security and Centralized Management<\/strong><\/h3>\n\n\n\n<p>All API calls are centralized within API Mesh, allowing you to manage authentication, authorization, and rate limiting in a single place. <\/p>\n\n\n\n<p>API Mesh can handle different authentication mechanisms (OAuth, API keys, Bearer tokens) for different data sources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How API Mesh Works with Adobe Commerce ?<\/h2>\n\n\n\n<p>Here\u2019s a breakdown of how API Mesh works in the context of Adobe Commerce:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Set Up Adobe Developer Console Project<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log into the <strong>Adobe Developer Console<\/strong> (<a href=\"https:\/\/developer.adobe.com\/console\/\">https:\/\/developer.adobe.com\/console\/<\/a>).<\/li>\n\n\n\n<li>Then click&nbsp;<a href=\"https:\/\/developer.adobe.com\/developer-console\/docs\/guides\/projects\/projects-template\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Create Project From Template<\/strong><\/a>.<\/li>\n\n\n\n<li>Select&nbsp;<strong>App Builder<\/strong>.<\/li>\n\n\n\n<li>Change the&nbsp;<strong>Project title<\/strong>&nbsp;to &#8220;Webkul Test&#8221;.<\/li>\n\n\n\n<li>Click Save. You now have a project named &#8220;Webkul Test&#8221; with workspaces named &#8220;Production&#8221; and &#8220;Stage&#8221;.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install the API Mesh plugin<\/h3>\n\n\n\n<p>Install the&nbsp;API Mesh plugin&nbsp;with the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">npm install -g @adobe\/aio-cli-plugin-api-mesh<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create a local directory<\/h3>\n\n\n\n<p>Create a local directory named &#8220;adobe-app-builder-new&#8221;. Then navigate to that directory in your CLI by using a command similar to:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cd my_path\/adobe-app-builder-new<\/pre>\n\n\n\n<p>This directory will contain your&nbsp;<code>mesh.json<\/code>&nbsp;file, the configuration file for your mesh.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Create a mesh<\/h3>\n\n\n\n<p>Run the following command to log into Adobe IO:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">aio login<\/pre>\n\n\n\n<p>Create a file named&nbsp;<code>mesh.json<\/code>&nbsp;with the following contents:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">  {\n&quot;meshConfig&quot;: {\n    &quot;sources&quot;: &#091;\n      {\n        &quot;name&quot;: &quot;GraphQl&quot;,\n        &quot;handler&quot;: {\n          &quot;graphql&quot;: {\n            &quot;endpoint&quot;: &quot;magento-instance-url\/graphql&quot;\n          }\n        }\n      },\n      {\n        &quot;name&quot;: &quot;REST&quot;,\n        &quot;handler&quot;: {\n          &quot;openapi&quot;: {\n            &quot;source&quot;: &quot;magento-instance-url\/rest\/all\/schema?services=all&quot;\n          }\n        }\n      }\n    ]\n  }\n}<\/pre>\n\n\n\n<p>This mesh configuration file defines the <strong>sources<\/strong> for retrieving data and the <strong>transforms<\/strong> to manipulate it. <\/p>\n\n\n\n<p>In this example, we use <code>magento2user.webkul.com\/abdev247\/pub\/<\/code>, an Adobe Commerce sample storefront, as the data source.<\/p>\n\n\n\n<p>Run the following command for create mesh:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">aio api-mesh:create mesh.json<\/pre>\n\n\n\n<p>Press <strong>Y<\/strong> and hit <strong>Enter<\/strong> to confirm the creation of the mesh. The configuration and related details will be displayed upon completion.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"825\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\" alt=\"Create mesh\" class=\"wp-image-464247\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console-300x206.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console-250x172.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console-768x528.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>API mesh may take a few minutes to fully propagate. To monitor the build progress, use the <code>aio api-mesh:status<\/code> command. Once the mesh is successfully built, you can move on to the next step.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Access the Mesh<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Execute the <code>aio api-mesh:describe<\/code> command and copy the <strong>Edge Mesh Endpoint<\/strong> URL provided.<\/li>\n\n\n\n<li>Open this url in browser. You will get both Rest and GraphQL endpoints in explore section <\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"825\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/graphiql-explorer.webp\" alt=\"Rest and GraphQL endpoints\" class=\"wp-image-464248\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/graphiql-explorer.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/graphiql-explorer-300x206.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/graphiql-explorer-250x172.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/graphiql-explorer-768x528.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Define the GraphQL Schema<\/h3>\n\n\n\n<p>API Mesh uses GraphQL to expose data from Adobe Commerce and other connected APIs. You can either auto-generate a GraphQL schema or manually define one that maps to the APIs you are integrating.<\/p>\n\n\n\n<p>Once the APIs are set up and the schema is defined, you can start querying the API Mesh using GraphQL.<\/p>\n\n\n\n<p>API Mesh handles the complexity of fetching data from multiple sources and returning it in a single response.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example GraphQL Query<\/strong>:<\/h4>\n\n\n\n<pre class=\"EnlighterJSRAW\">query MyQuery {\n  products(search: &quot;&quot;) {\n    items {\n      name\n      thumbnail{\n        url\n      }\n    }\n  }\n\n  storeConfig {\n    store_code\n    store_name\n    base_currency_code\n  }\n  GetV1DirectoryCountries {\n    ... on directory_data_country_information_interface {\n      id\n      two_letter_abbreviation\n  }\n }\n}<\/pre>\n\n\n\n<p>These queries demonstrate how you can return data from multiple sources within your mesh with a single request.<\/p>\n\n\n\n<p>The&nbsp;<strong>products <\/strong>and <code><strong>storeConfig<\/strong><\/code> &nbsp;query returns information from the&nbsp;<code>GraphQL<\/code>&nbsp;handler, while the&nbsp;<strong>GetV1DirectoryCountries<\/strong>&nbsp;query returns information from the&nbsp;<code>REST<\/code>&nbsp;handler.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"825\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/my-query.webp\" alt=\"query returns information\" class=\"wp-image-464275\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/my-query.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/my-query-300x206.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/my-query-250x172.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/my-query-768x528.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Common Use Cases for Adobe Commerce API Mesh<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Unified Product Data<\/h3>\n\n\n\n<p>Easily aggregate product data from Adobe Commerce and external systems like PIMs or ERPs, ensuring consistent and enriched product information across your eCommerce store.<\/p>\n\n\n\n<p><strong>Use Case<\/strong>: A store that uses a <a href=\"https:\/\/webkul.com\/product-information-manager\/\">PIM system<\/a> to manage advanced product attributes can integrate both systems via API Mesh, exposing a single GraphQL endpoint that serves unified product information.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Real-Time Order and Inventory Management<\/h3>\n\n\n\n<p>Integrate Adobe Commerce with an external ERP or order management system to retrieve real-time order status and inventory levels.<\/p>\n\n\n\n<p><strong>Use Case<\/strong>: If Adobe Commerce is managing the order data but inventory is managed in a separate ERP system.<\/p>\n\n\n\n<p>API Mesh allows you to create a unified query that pulls order and inventory information in one call.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Omnichannel Commerce Integration<\/h3>\n\n\n\n<p>Use API Mesh to integrate Adobe Commerce with external systems like CRM, marketing automation, and customer service tools, creating a unified customer profile across channels.<\/p>\n\n\n\n<p><strong>Use Case<\/strong>: A company that uses Salesforce for CRM and Adobe Commerce for transactions can use API Mesh to unify customer data.<\/p>\n\n\n\n<p>Allowing customer service teams to see both CRM and order history in one view.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Shipping and Fulfillment Integration<\/h3>\n\n\n\n<p>Connect Adobe Commerce with third-party logistics and shipping services, streamlining the process of fetching shipment tracking details and updating order statuses.<\/p>\n\n\n\n<p><strong>Use Case<\/strong>: Retrieve order data from Adobe Commerce and shipping details from a third-party logistics provider (e.g., FedEx or UPS) in a single API request. <\/p>\n\n\n\n<p>This enhances the customer\u2019s ability to track their shipments seamlessly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced Features of API Mesh<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Schema Stitching<\/h3>\n\n\n\n<p>API Mesh can merge the GraphQL schemas from multiple APIs into a single, cohesive schema. <\/p>\n\n\n\n<p>This allows you to easily query multiple data sources (both Adobe Commerce and third-party APIs) through a unified API endpoint.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Field Resolvers<\/h3>\n\n\n\n<p>API Mesh allows you to define <strong>field resolvers<\/strong>, which map specific fields in the GraphQL schema to different APIs or data sources. <\/p>\n\n\n\n<p>This makes it possible to fine-tune how data is fetched and merged between Adobe Commerce and external systems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Error Handling<\/h3>\n\n\n\n<p>API Mesh provides built-in mechanisms for handling errors and managing failover situations. If one API fails, it doesn\u2019t disrupt the entire query, and partial data can still be returned.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Caching and Optimization<\/h3>\n\n\n\n<p>API Mesh supports caching at the query level, allowing you to cache the results of expensive API calls and reduce the number of external requests. <\/p>\n\n\n\n<p>This greatly improves performance, especially for common queries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Comparison: Adobe Commerce API Mesh vs Traditional API Integration<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Feature<\/th><th>Adobe Commerce API Mesh<\/th><th>Traditional API Integration<\/th><\/tr><\/thead><tbody><tr><td>API Management<\/td><td>Unified GraphQL endpoint for multiple APIs<\/td><td>Individual API calls for each service<\/td><\/tr><tr><td>Query Language<\/td><td>GraphQL<\/td><td>REST or GraphQL per API<\/td><\/tr><tr><td>Aggregation<\/td><td>Combines multiple APIs into a single query<\/td><td>Separate API calls<\/td><\/tr><tr><td>Performance<\/td><td>Optimized with caching and batching<\/td><td>May require manual optimization<\/td><\/tr><tr><td>Security<\/td><td>Centralized security and rate limiting<\/td><td>Managed separately for each API<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If you need any technical support, please contact us at <a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n\n\n\n<p>Additionally, explore various solutions to improve your Magento 2 store\u2019s functionality by visiting the <a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 plugins <\/a>page.<\/p>\n\n\n\n<p>For expert consultation or to create custom features, <a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">hire Magento 2 Developers<\/a> for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>API Mesh is a core feature of Adobe Commerce App Builder that aggregates multiple APIs into a unified GraphQL interface. It allows developers to connect Adobe Commerce&#8217;s native REST and GraphQL APIs with external systems, such as third-party shipping, CRM, ERP, and inventory management systems. These systems are then exposed through a single, unified endpoint. <a href=\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1173,9121,1],"tags":[15620,12967,292,2460],"class_list":["post-464173","post","type-post","status-publish","format-standard","hentry","category-api-2","category-magento-2","category-uncategorized","tag-adobe-app-builder","tag-adobe-commerce","tag-api","tag-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>API Mesh - Adobe Commerce App Builder - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"API Mesh - Adobe Commerce App Builder - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-20T13:22:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-02T06:44:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"API Mesh &#8211; Adobe Commerce App Builder\",\"datePublished\":\"2024-09-20T13:22:51+00:00\",\"dateModified\":\"2025-05-02T06:44:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\"},\"wordCount\":1216,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\",\"keywords\":[\"Adobe App Builder\",\"Adobe Commerce\",\"api\",\"Magento 2\"],\"articleSection\":[\"API\",\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\",\"url\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\",\"name\":\"API Mesh - Adobe Commerce App Builder - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\",\"datePublished\":\"2024-09-20T13:22:51+00:00\",\"dateModified\":\"2025-05-02T06:44:46+00:00\",\"description\":\"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp\",\"width\":1200,\"height\":825},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"API Mesh &#8211; Adobe Commerce App Builder\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"API Mesh - Adobe Commerce App Builder - Webkul Blog","description":"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.","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:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/","og_locale":"en_US","og_type":"article","og_title":"API Mesh - Adobe Commerce App Builder - Webkul Blog","og_description":"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.","og_url":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-09-20T13:22:51+00:00","article_modified_time":"2025-05-02T06:44:46+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp","type":"","width":"","height":""}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"API Mesh &#8211; Adobe Commerce App Builder","datePublished":"2024-09-20T13:22:51+00:00","dateModified":"2025-05-02T06:44:46+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/"},"wordCount":1216,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp","keywords":["Adobe App Builder","Adobe Commerce","api","Magento 2"],"articleSection":["API","Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/","url":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/","name":"API Mesh - Adobe Commerce App Builder - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp","datePublished":"2024-09-20T13:22:51+00:00","dateModified":"2025-05-02T06:44:46+00:00","description":"Discover how to integrate APIs into Adobe Commerce with API Mesh, simplifying management, boosting performance, and unifying data.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/ubuntu-console.webp","width":1200,"height":825},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/api-mesh-adobe-commerce-app-builder\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"API Mesh &#8211; Adobe Commerce App Builder"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/464173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=464173"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/464173\/revisions"}],"predecessor-version":[{"id":490804,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/464173\/revisions\/490804"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=464173"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=464173"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=464173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}