{"id":15575,"date":"2014-10-20T13:55:04","date_gmt":"2014-10-20T13:55:04","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=15575"},"modified":"2025-12-30T10:12:42","modified_gmt":"2025-12-30T10:12:42","slug":"programmatically-create-order-magento","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/","title":{"rendered":"Programmatically Create Order in Magento 2"},"content":{"rendered":"\n<p>Creating an Order Programatically in Magento 2 is a common requirement for integrations such as ERP systems, CRMs, mobile apps, payment gateways, or custom checkout flows.<\/p>\n\n\n\n<p>Magento provides a robust service-layer architecture that enables developers to create orders securely while adhering to business rules such as pricing, taxes, shipping, and inventory management.<\/p>\n\n\n\n<p>This blog <span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">outlines a\u00a0<strong>clean, service-based approach<\/strong>\u00a0to creating orders<\/span> in Magento 2 programmatically.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">When Do You Need to Create Orders Programmatically?<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Importing orders from external platforms<\/li>\n\n\n\n<li>Third\u2011party system integration (ERP, CRM, POS)<\/li>\n\n\n\n<li>Custom checkout implementation<\/li>\n\n\n\n<li>API-based order creation<\/li>\n\n\n\n<li>Automated or scheduled order creation<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Magento\u2019s Internal Order Creation Flow<\/h2>\n\n\n\n<p>Magento internally uses a quote-to-order flow even for programmatic orders. This ensures accurate pricing, tax calculations, shipping validation, and proper inventory updates.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Final Implementation: Create Order Programmatically<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;?php\nnamespace Webkul\\OrderCreate\\Model;\n\nuse Magento\\Store\\Model\\StoreManagerInterface;\nuse Magento\\Customer\\Api\\CustomerRepositoryInterface;\nuse Magento\\Quote\\Model\\QuoteFactory;\nuse Magento\\Quote\\Api\\CartRepositoryInterface;\nuse Magento\\Quote\\Api\\CartManagementInterface;\nuse Magento\\Catalog\\Api\\ProductRepositoryInterface;\n\nclass CreateOrder\n{\n    protected $storeManager;\n    protected $customerRepository;\n    protected $quoteFactory;\n    protected $cartRepository;\n    protected $cartManagement;\n    protected $productRepository;\n\n    public function __construct(\n        StoreManagerInterface $storeManager,\n        CustomerRepositoryInterface $customerRepository,\n        QuoteFactory $quoteFactory,\n        CartRepositoryInterface $cartRepository,\n        CartManagementInterface $cartManagement,\n        ProductRepositoryInterface $productRepository\n    ) {\n        $this->storeManager       = $storeManager;\n        $this->customerRepository = $customerRepository;\n        $this->quoteFactory       = $quoteFactory;\n        $this->cartRepository     = $cartRepository;\n        $this->cartManagement     = $cartManagement;\n        $this->productRepository = $productRepository;\n    }\n\n    public function createOrder($customerId, $sku, $qty = 1)\n    {\n        $store = $this->storeManager->getStore();\n        $quote = $this->quoteFactory->create()->setStore($store);\n\n        $customer = $this->customerRepository->getById($customerId);\n        $quote->assignCustomer($customer);\n\n        $product = $this->productRepository->get($sku);\n        $quote->addProduct($product, $qty);\n\n        $addressData = [\n            'firstname' => 'John',\n            'lastname'  => 'Doe',\n            'street'    => 'Street Address',\n            'city'      => 'New York',\n            'postcode'  => '10001',\n            'telephone' => '1234567890',\n            'country_id'=> 'US',\n            'region'    => 'New York'\n        ];\n\n        $quote->getBillingAddress()->addData($addressData);\n        $shippingAddress = $quote->getShippingAddress()->addData($addressData);\n\n        $shippingAddress->setCollectShippingRates(true)\n            ->collectShippingRates()\n            ->setShippingMethod('flatrate_flatrate');\n\n        $quote->setPaymentMethod('checkmo');\n        $quote->getPayment()->importData(['method' => 'checkmo']);\n\n        $quote->collectTotals();\n        $this->cartRepository->save($quote);\n\n        return $this->cartManagement->placeOrder($quote->getId());\n    }\n}\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices<\/h2>\n\n\n\n<p><strong>Finally<\/strong>, prefer implementing order creation logic within service classes or cron jobs for better scalability and maintainability.<\/p>\n\n\n\n<p><strong>Firstly<\/strong>, log all failures and exceptions so that issues can be easily traced and debugged later.<\/p>\n\n\n\n<p><strong>Secondly<\/strong>, validate product stock availability before adding items to the quote to avoid inventory conflicts.<\/p>\n\n\n\n<p><strong>Additionally<\/strong>, avoid executing this logic inside frontend controllers, as it can impact performance and security.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>By following Magento\u2019s checkout flow internally for Creating an Order Programatically, you ensure accurate pricing, tax calculation, inventory handling, and order consistency.<\/p>\n\n\n\n<p>This method is reliable, scalable, and suitable for enterprise-level integrations.<\/p>\n\n\n\n<p>If you need technical assistance, please reach out to us at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>. Additionally, discover various solutions to improve your online store by visiting the&nbsp;<a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Adobe Commerce modules<\/a>&nbsp;section.<\/p>\n\n\n\n<p>For professional advice or to create custom functionalities, consider hiring&nbsp;<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Adobe Commerce Developers<\/a>&nbsp;for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating an Order Programatically in Magento 2 is a common requirement for integrations such as ERP systems, CRMs, mobile apps, payment gateways, or custom checkout flows. Magento provides a robust service-layer architecture that enables developers to create orders securely while adhering to business rules such as pricing, taxes, shipping, and inventory management. This blog outlines <a href=\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\">[&#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":[8,599],"tags":[],"class_list":["post-15575","post","type-post","status-publish","format-standard","hentry","category-magento","category-magento-1-8"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating an Order Programatically<\/title>\n<meta name=\"description\" content=\"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.\" \/>\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\/programmatically-create-order-magento\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating an Order Programatically\" \/>\n<meta property=\"og:description\" content=\"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\" \/>\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=\"2014-10-20T13:55:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-30T10:12:42+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=\"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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"Programmatically Create Order in Magento 2\",\"datePublished\":\"2014-10-20T13:55:04+00:00\",\"dateModified\":\"2025-12-30T10:12:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\"},\"wordCount\":283,\"commentCount\":19,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"articleSection\":[\"magento\",\"Magento 1.8\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\",\"url\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\",\"name\":\"Creating an Order Programatically\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2014-10-20T13:55:04+00:00\",\"dateModified\":\"2025-12-30T10:12:42+00:00\",\"description\":\"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programmatically Create Order in Magento 2\"}]},{\"@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":"Creating an Order Programatically","description":"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.","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\/programmatically-create-order-magento\/","og_locale":"en_US","og_type":"article","og_title":"Creating an Order Programatically","og_description":"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.","og_url":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2014-10-20T13:55:04+00:00","article_modified_time":"2025-12-30T10:12:42+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":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"Programmatically Create Order in Magento 2","datePublished":"2014-10-20T13:55:04+00:00","dateModified":"2025-12-30T10:12:42+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/"},"wordCount":283,"commentCount":19,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"articleSection":["magento","Magento 1.8"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/","url":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/","name":"Creating an Order Programatically","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2014-10-20T13:55:04+00:00","dateModified":"2025-12-30T10:12:42+00:00","description":"Learn Creating an Order Programatically in Magento 2 using QuoteFactory, CartRepository, and CartManagement with a working example.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/programmatically-create-order-magento\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Programmatically Create Order in Magento 2"}]},{"@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\/15575","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=15575"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/15575\/revisions"}],"predecessor-version":[{"id":519354,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/15575\/revisions\/519354"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=15575"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=15575"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=15575"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}