{"id":319,"date":"2026-01-24T02:00:03","date_gmt":"2026-01-24T02:00:03","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=319"},"modified":"2026-08-30T22:28:24","modified_gmt":"2026-08-30T22:28:24","slug":"how-to-create-vps-on-windows-server-a-complete-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/","title":{"rendered":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Windows Server includes Hyper-V, a Type 1 hypervisor that lets you run multiple isolated virtual machines on a single physical server. Hyper-V is included with all Windows Server licensing editions (Standard and Datacenter) and requires no additional purchase. This guide covers the practical details of setting up Hyper-V networking, storage, and day-to-day VM management, with specific commands and configuration tips that apply to Windows Server 2019, 2022, and 2025.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Virtual Switch Design for Production<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The virtual switch is the most critical networking component in Hyper-V. A poorly designed switch configuration causes connectivity issues that are hard to diagnose. For production deployments, follow these best practices:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use a dedicated physical NIC for Hyper-V traffic<\/strong> if the host has multiple NICs. Reserve one NIC for management and one for VM traffic.<\/li>\n<li><strong>Enable SR-IOV (Single Root I\/O Virtualization)<\/strong> for latency-sensitive workloads like database servers. SR-IOV allows a VM to directly access a physical NIC, bypassing the virtual switch and reducing latency overhead.<\/li>\n<li><strong>Set up VLAN tagging<\/strong> if your network infrastructure uses VLANs. Use <code>Set-VMNetworkAdapterVlan -VMName \"WebServer01\" -Access -VlanId 100<\/code> to assign a VM to a specific VLAN.<\/li>\n<li><strong>Enable bandwidth management<\/strong> with <code>Set-VMNetworkAdapter -VMName \"WebServer01\" -MinimumBandwidthWeight 100 -MaximumBandwidth 100Mbps<\/code> to prevent one VM from consuming all available bandwidth.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Storage Options: VHDX Fixed vs. Dynamic<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Type<\/th><th>Allocation<\/th><th>Performance<\/th><th>Use Case<\/th><\/tr><\/thead><tbody><tr><td>Fixed-size VHDX<\/td><td>Full size allocated at creation<\/td><td>Best \u2014 no performance overhead<\/td><td>Production SQL Server, domain controllers, busy web servers<\/td><\/tr><tr><td>Dynamic VHDX<\/td><td>Grows on demand, up to max size<\/td><td>Slight overhead during growth phase<\/td><td>Dev\/test environments, light workloads, when disk space is tight<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">For production, use fixed-size VHDX disks. The performance difference between fixed and dynamic VHDX is small on modern SSDs, but fixed disks avoid the fragmentation that can occur during dynamic growth. Convert a dynamic disk to fixed with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Convert-VHD -Path \"D:\\VMs\\WebServer01\\WebServer01.vhdx\" -DestinationPath \"D:\\VMs\\WebServer01\\WebServer01_fixed.vhdx\" -VHDType Fixed<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">VM Generation: Gen 1 vs Gen 2<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Hyper-V supports two VM generations. Generation 2 is the modern standard and should be used for all new VMs running 64-bit Windows Server 2012+ or supported Linux distributions.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Gen 2 advantages:<\/strong> UEFI boot, Secure Boot, larger disk sizes (up to 64 TB), faster boot times, PXE boot via IPv4 and IPv6, and support for standard VHDX format.<\/li>\n<li><strong>Gen 1 limitations:<\/strong> Legacy BIOS boot, 2 TB disk limit, no Secure Boot, no PXE boot via IPv6. Use only for legacy OS images that do not support Gen 2.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Batch Provisioning with PowerShell<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When you need to create multiple VMs \u2014 for a development environment, testing farm, or scalable application \u2014 PowerShell scripting saves hours. Here is a script that creates a VM from a template VHDX:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$templateVHD = \"D:\\Templates\\WindowsServer2025_Base.vhdx\"\n$vms = @(\"Dev-Web-01\", \"Dev-API-01\", \"Dev-DB-01\")\n\nforeach ($vm in $vms) {\n    $vmPath = \"D:\\VMs\\$vm\"\n    New-Item -ItemType Directory -Path $vmPath -Force\n    Copy-Item $templateVHD \"$vmPath\\$vm.vhdx\"\n\n    New-VM -Name $vm -MemoryStartupBytes 2GB -VHDPath \"$vmPath\\$vm.vhdx\" -Generation 2 -SwitchName \"ExternalSwitch\"\n    Start-VM -Name $vm\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This approach works well with sysprepped VHDX templates. Remember to run <code>sysprep \/generalize \/shutdown \/oobe<\/code> on the source VM before capturing the template VHDX.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Backup and Restore Strategies<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Hyper-V integrates with Windows Server Backup and VSS for consistent VM backups. The simplest backup strategy for a small deployment:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Windows Server Backup to back up the entire host, which includes all VMs. This works well for up to 10 VMs on a single host.<\/li>\n<li>For larger deployments, use <code>Backup-VM<\/code> cmdlet from the Hyper-V module to back up individual VMs to a network share or external drive.<\/li>\n<li>Export a VM to a portable format with <code>Export-VM -Name \"WebServer01\" -Path \"E:\\VMExports\"<\/code> for disaster recovery.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Performance Monitoring for Hyper-V Hosts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Monitor host performance with these key PerfMon counters:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Hyper-V Hypervisor Logical Processor &gt; % Total Run Time<\/strong> \u2014 overall CPU utilization of the hypervisor<\/li>\n<li><strong>Hyper-V Dynamic Memory Balancer &gt; Available Memory<\/strong> \u2014 remaining memory available for new VMs<\/li>\n<li><strong>Hyper-V Virtual Storage Device &gt; Average Latency<\/strong> \u2014 storage latency, should stay below 10 ms on SSDs<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Combine these with standard Windows counters (Memory, Disk, Network) for a complete picture of host health.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Hyper-V on Windows Server is a production-grade virtualization platform that handles everything from small development environments to enterprise-scale workloads. Proper virtual switch configuration, the right storage choices, and PowerShell-driven automation are the three pillars of a smooth Hyper-V deployment. If you prefer managed hosting instead of running your own Hyper-V infrastructure, <a href=\"https:\/\/windows-vps.org\/\">compare Windows VPS plans on our comparison table<\/a> to find a provider that offers the resources and features your workloads need.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When it comes to running applications, hosting websites, or deploying development environments, knowing\u00a0how to create vps on windows server\u00a0is a valuable skill. Windows Server\u2019s built-in virtualization technology makes it possible to set up and manage virtual private servers without relying on third-party software. For more in-depth resources and tools to make the process smoother, visit\u00a0Windows VPS\u00a0where you can explore advanced tips and service options for Windows-based hosting.<\/p>\n","protected":false},"author":1,"featured_media":320,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":5,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-319","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"When it comes to running applications, hosting websites, or deploying development environments, knowing\u00a0how to create vps on windows server\u00a0is a valuable skill. Windows Server\u2019s built-in virtualization technology makes it possible to set up and manage virtual private servers without relying on third-party software. For more in-depth resources and tools to make the process smoother, visit\u00a0Windows VPS\u00a0where you can explore advanced tips and service options for Windows-based hosting.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management\" \/>\n<meta property=\"og:description\" content=\"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-24T02:00:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-30T22:28:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"427\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"windows-vps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"windows-vps\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/\",\"name\":\"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg\",\"datePublished\":\"2026-01-24T02:00:03+00:00\",\"dateModified\":\"2026-08-30T22:28:24+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"When it comes to running applications, hosting websites, or deploying development environments, knowing\u00a0how to create vps on windows server\u00a0is a valuable skill. Windows Server\u2019s built-in virtualization technology makes it possible to set up and manage virtual private servers without relying on third-party software. For more in-depth resources and tools to make the process smoother, visit\u00a0Windows VPS\u00a0where you can explore advanced tips and service options for Windows-based hosting.\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg\",\"width\":640,\"height\":427},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\",\"url\":\"https:\/\/windows-vps.org\/blog\/\",\"name\":\"Windows VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/windows-vps.org\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\",\"name\":\"windows-vps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"caption\":\"windows-vps\"},\"sameAs\":[\"https:\/\/windows-vps.org\/blog\"],\"url\":\"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management - Windows VPS Blog","description":"When it comes to running applications, hosting websites, or deploying development environments, knowing\u00a0how to create vps on windows server\u00a0is a valuable skill. Windows Server\u2019s built-in virtualization technology makes it possible to set up and manage virtual private servers without relying on third-party software. For more in-depth resources and tools to make the process smoother, visit\u00a0Windows VPS\u00a0where you can explore advanced tips and service options for Windows-based hosting.","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:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management","og_description":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management","og_url":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-01-24T02:00:03+00:00","article_modified_time":"2026-08-30T22:28:24+00:00","og_image":[{"width":640,"height":427,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg","type":"image\/jpeg"}],"author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/","url":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/","name":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg","datePublished":"2026-01-24T02:00:03+00:00","dateModified":"2026-08-30T22:28:24+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"When it comes to running applications, hosting websites, or deploying development environments, knowing\u00a0how to create vps on windows server\u00a0is a valuable skill. Windows Server\u2019s built-in virtualization technology makes it possible to set up and manage virtual private servers without relying on third-party software. For more in-depth resources and tools to make the process smoother, visit\u00a0Windows VPS\u00a0where you can explore advanced tips and service options for Windows-based hosting.","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/2211.jpg","width":640,"height":427},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-create-vps-on-windows-server-a-complete-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Windows Server Virtualization with Hyper-V: VM Networking, Storage, and Management"}]},{"@type":"WebSite","@id":"https:\/\/windows-vps.org\/blog\/#website","url":"https:\/\/windows-vps.org\/blog\/","name":"Windows VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/windows-vps.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58","name":"windows-vps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","caption":"windows-vps"},"sameAs":["https:\/\/windows-vps.org\/blog"],"url":"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/"}]}},"_links":{"self":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/319","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/comments?post=319"}],"version-history":[{"count":4,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/319\/revisions"}],"predecessor-version":[{"id":710,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/319\/revisions\/710"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/320"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}