{"id":391530,"date":"2023-08-03T08:14:24","date_gmt":"2023-08-03T08:14:24","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=391530"},"modified":"2024-09-24T06:12:03","modified_gmt":"2024-09-24T06:12:03","slug":"magento-2-area-codes","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/","title":{"rendered":"Magento 2 Area codes"},"content":{"rendered":"\n<p>Magento 2 Area codes is a crucial component that helps manage different contexts within the application, such as the frontend, admin, and <a href=\"https:\/\/webkul.com\/blog\/magento2-custom-rest-api\/\">web API<\/a> areas. <\/p>\n\n\n\n<p>It sets the environment for code execution and loads only the relevant code for each specific context.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Area codes :<\/h2>\n\n\n\n<p>An&nbsp;<em><strong>area<\/strong><\/em>&nbsp;is a logical component that organizes code for optimized request processing.<\/p>\n\n\n\n<p>The Adobe Commerce and <a href=\"https:\/\/webkul.com\/blog\/open-source-magento-mobile-app\/\">Magento 2 Open Source<\/a> framework (Commerce framework) uses areas to streamline web service calls by loading only the dependent code for the specified area.<\/p>\n\n\n\n<p>Each of the default areas defined by the Commerce framework can contain completely different codes on how to process URLs and requests.<\/p>\n\n\n\n<p>The various Area codes in Magento 2 are as follows :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Admin<\/strong>&nbsp;(<code>adminhtml<\/code>)<\/li>\n\n\n\n<li><strong>Storefront<\/strong>&nbsp;(<code>frontend<\/code>)<\/li>\n\n\n\n<li><strong>Basic<\/strong>&nbsp;(<code>base<\/code>)<\/li>\n\n\n\n<li><strong>Cron<\/strong>&nbsp;(<code>crontab<\/code>)<\/li>\n\n\n\n<li><strong>Web API REST<\/strong>&nbsp;(<code>webapi_rest<\/code>)<\/li>\n\n\n\n<li><strong>GraphQL<\/strong>&nbsp;(<code>graphql<\/code>)<\/li>\n\n\n\n<li><strong>Web API SOAP<\/strong>&nbsp;(<code>webapi_soap<\/code>)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Admin<\/strong>&nbsp;(<code>adminhtml<\/code>) :<\/h3>\n\n\n\n<p>The <strong>adminhtml<\/strong> is an area code that contains the files that define the appearance of the Admin side.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Storefront<\/strong>&nbsp;(<code>frontend<\/code>) :<\/h3>\n\n\n\n<p>The <strong><code>frontend<\/code><\/strong> is an area code that contains the files that define the appearance of the Client side.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Basic<\/strong>&nbsp;(<code>base<\/code>) :<\/h3>\n\n\n\n<p>The <strong><code><code>base<\/code><\/code><\/strong> is an area code that contains the files which contain code used on both the Admin and Client side.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Cron<\/strong>&nbsp;(<code>crontab<\/code>) :<\/h3>\n\n\n\n<p>To create a cron job you need to create a crontab.xml file under the etc folder where you can define your cron jobs.<\/p>\n\n\n\n<p>The&nbsp;<code>crontab<\/code>&nbsp;area will always be loaded by the&nbsp;<code>\\Magento\\Framework\\App\\Cron<\/code>&nbsp;class in cron.php<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Web API REST<\/strong>&nbsp;(<code>webapi_rest<\/code>) :<\/h3>\n\n\n\n<p>The <code><strong><a href=\"https:\/\/webkul.com\/blog\/magento2-custom-rest-api\/\">webapi_rest<\/a><\/strong><\/code> area in Magento 2 contains files that define a set of functions that a developer can use to perform requests and receive responses.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>GraphQL<\/strong>&nbsp;(<code>graphql<\/code>) :<\/h3>\n\n\n\n<p>The <code><strong>graphql<\/strong><\/code> area is used to create and manage the <code>graphql<\/code> API.<\/p>\n\n\n\n<p>In Magento 2, GraphQL is a new feature whose primary focus is to speed up and boost the APIs, their flexibility, and their effectiveness. <\/p>\n\n\n\n<p>It\u00a0allows developers to query and mutate data in Magento&#8217;s database using a standardized syntax.<\/p>\n\n\n\n<p>Know more about <a href=\"https:\/\/developer.adobe.com\/commerce\/webapi\/graphql\/tutorials\/checkout\/\"><code>Graph<\/code>QL<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Web API SOAP<\/strong>&nbsp;(<code>webapi_soap<\/code>)<\/h3>\n\n\n\n<p>The <code><strong><code>webapi_soap<\/code><\/strong><\/code> area is used to create and manage the <code>soap<\/code> API.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How areas work with modules :<\/h2>\n\n\n\n<p>Modules define which resources are visible and accessible in an area, as well as an area&#8217;s behavior. The same module can influence several areas. <\/p>\n\n\n\n<p>For instance, the <a href=\"https:\/\/webkul.com\/blog\/adobe-commerce-product-return-rma\/\">RMA module<\/a> is represented partly in the\u00a0<code><strong>adminhtml<\/strong><\/code>\u00a0area and partly in the\u00a0<code><strong>frontend<\/strong><\/code>\u00a0area.<\/p>\n\n\n\n<p>If your extension works in several different areas, ensure it has separate behavior and view components for each area.<\/p>\n\n\n\n<p>Each area declares itself within a module. All resources specific to an area are located within the same module as well.<\/p>\n\n\n\n<p>You can enable or disable an area within a module. If the module enabled then it injects an area&#8217;s routers into the <a href=\"https:\/\/webkul.com\/blog\/how-to-create-custom-routes-adobe-commerce\/\">general application&#8217;s routing<\/a> process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Area codes in Magento 2 play a vital role in organizing and optimizing the execution context of various components within the application, including the frontend, admin, and web API areas. <\/p>\n\n\n\n<p>By defining distinct environments for processing requests, Magento 2 ensures that only relevant code is loaded, enhancing efficiency and performance. <\/p>\n\n\n\n<p>Each area such as adminhtml, frontend, webapi_rest, and graphql serves specific functions and allows for tailored behavior within modules. <\/p>\n\n\n\n<p>This modular architecture enables developers to manage resources effectively and create flexible solutions that cater to multiple contexts. <\/p>\n\n\n\n<p>Understanding and leveraging area codes is essential for developers aiming to build robust, responsive, and well-structured applications on the Magento 2 platform. <\/p>\n\n\n\n<p>Ultimately, this knowledge empowers users to create seamless interactions across different areas of the application, driving successful e-commerce experiences.<\/p>\n\n\n\n<p>Continue Reading -&gt; <a href=\"https:\/\/webkul.com\/blog\/magento-development-01-module-registration\/\">Magento 2 Module Registration<\/a><\/p>\n\n\n\n<p>Previous Blog -&gt; <a href=\"https:\/\/webkul.com\/blog\/magento-2-development-02-list-of-magento-important-terminal-commands\/\">Magento 2 Commands List<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Magento 2 Area codes is a crucial component that helps manage different contexts within the application, such as the frontend, admin, and web API areas. It sets the environment for code execution and loads only the relevant code for each specific context. Area codes : An&nbsp;area&nbsp;is a logical component that organizes code for optimized request <a href=\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":548,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[14524,14525,2056,2460,15549,15550],"class_list":["post-391530","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-area","tag-area-codes","tag-magento","tag-magento-2","tag-magento-2-area-codes","tag-set-area-code"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento 2 Area codes<\/title>\n<meta name=\"description\" content=\"Magento 2 Area codes determines the environment in which code is executed &amp; ensures that only relevant code is loaded for a specific context.\" \/>\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\/magento-2-area-codes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento 2 Area codes\" \/>\n<meta property=\"og:description\" content=\"Magento 2 Area codes determines the environment in which code is executed &amp; ensures that only relevant code is loaded for a specific context.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\" \/>\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=\"2023-08-03T08:14:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-24T06:12:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Deepesh Kumar\" \/>\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=\"Deepesh Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\"},\"author\":{\"name\":\"Deepesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/43552f90bbc8fafb784fe138f6d82a0b\"},\"headline\":\"Magento 2 Area codes\",\"datePublished\":\"2023-08-03T08:14:24+00:00\",\"dateModified\":\"2024-09-24T06:12:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\"},\"wordCount\":587,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Area\",\"Area Codes\",\"magento\",\"Magento 2\",\"Magento 2 Area codes\",\"set area code\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\",\"name\":\"Magento 2 Area codes\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2023-08-03T08:14:24+00:00\",\"dateModified\":\"2024-09-24T06:12:03+00:00\",\"description\":\"Magento 2 Area codes determines the environment in which code is executed & ensures that only relevant code is loaded for a specific context.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento 2 Area codes\"}]},{\"@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\/43552f90bbc8fafb784fe138f6d82a0b\",\"name\":\"Deepesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d898f8a790ab5a002f048ad4b4661fda07600235f1338d01ff1fd60152fe4d10?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\/d898f8a790ab5a002f048ad4b4661fda07600235f1338d01ff1fd60152fe4d10?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Deepesh Kumar\"},\"description\":\"Deepesh Kumar, a proficient Software Engineer, excels in PHP, JavaScript, and database management. Mastery of complex eCommerce systems and Magento&rsquo;s architecture drives innovative solutions and optimizes performance for business success.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/deepeshkumar-mg397\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Magento 2 Area codes","description":"Magento 2 Area codes determines the environment in which code is executed & ensures that only relevant code is loaded for a specific context.","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\/magento-2-area-codes\/","og_locale":"en_US","og_type":"article","og_title":"Magento 2 Area codes","og_description":"Magento 2 Area codes determines the environment in which code is executed & ensures that only relevant code is loaded for a specific context.","og_url":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-08-03T08:14:24+00:00","article_modified_time":"2024-09-24T06:12:03+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Deepesh Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Deepesh Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/"},"author":{"name":"Deepesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/43552f90bbc8fafb784fe138f6d82a0b"},"headline":"Magento 2 Area codes","datePublished":"2023-08-03T08:14:24+00:00","dateModified":"2024-09-24T06:12:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/"},"wordCount":587,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Area","Area Codes","magento","Magento 2","Magento 2 Area codes","set area code"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento-2-area-codes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/","url":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/","name":"Magento 2 Area codes","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2023-08-03T08:14:24+00:00","dateModified":"2024-09-24T06:12:03+00:00","description":"Magento 2 Area codes determines the environment in which code is executed & ensures that only relevant code is loaded for a specific context.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento-2-area-codes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento-2-area-codes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento 2 Area codes"}]},{"@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\/43552f90bbc8fafb784fe138f6d82a0b","name":"Deepesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d898f8a790ab5a002f048ad4b4661fda07600235f1338d01ff1fd60152fe4d10?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\/d898f8a790ab5a002f048ad4b4661fda07600235f1338d01ff1fd60152fe4d10?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Deepesh Kumar"},"description":"Deepesh Kumar, a proficient Software Engineer, excels in PHP, JavaScript, and database management. Mastery of complex eCommerce systems and Magento&rsquo;s architecture drives innovative solutions and optimizes performance for business success.","url":"https:\/\/webkul.com\/blog\/author\/deepeshkumar-mg397\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391530","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\/548"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=391530"}],"version-history":[{"count":22,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391530\/revisions"}],"predecessor-version":[{"id":464717,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391530\/revisions\/464717"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=391530"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=391530"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=391530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}