{"id":73,"date":"2025-11-25T02:13:54","date_gmt":"2025-11-25T02:13:54","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=73"},"modified":"2026-09-03T22:09:20","modified_gmt":"2026-09-03T22:09:20","slug":"vps-hardware-specs-cpu-ram-storage-guide","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/","title":{"rendered":"How to Verify a VPS Provider&#8217;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning"},"content":{"rendered":"<p class=\"wp-block-paragraph\">A VPS spec sheet can say \u201c2 vCPUs, 4 GB RAM, 80 GB NVMe\u201d while the reality under the hood is two shared hyperthreads of a 2013 Xeon, DDR3 memory, and a SATA SSD rebranded as \u201cfast storage.\u201d Providers rarely lie outright \u2014 they just describe the plan in the most generous terms possible. The fix is to stop trusting the marketing page and start interrogating the server itself. Within ten minutes of provisioning, you can verify the CPU generation, memory configuration, and storage tier with a handful of standard Linux tools. This article shows you exactly which commands to run, how to read the output, and what to do when the hardware does not match the promise.<\/p>\n<p class=\"wp-block-paragraph\">If you are still comparing providers, our <a href=\"https:\/\/virtualserversvps.com\/#providers\">VPS comparison table<\/a> lists the hardware tiers each host actually publishes, which saves you from provisioning five test servers just to read their <code>lscpu<\/code> output.<\/p>\n<h2 class=\"wp-block-heading\">1. Verify the CPU Generation First<\/h2>\n<p class=\"wp-block-paragraph\">Core count is the least informative number on a VPS plan. A single core of a modern AMD EPYC (Genoa or Bergamo) or Intel Xeon Scalable (4th gen or newer) can outperform two or three cores of an older E5-2690 v2 from 2013, because instructions per clock (IPC) have roughly doubled across that span. Run these checks immediately after your first SSH login:<\/p>\n<pre class=\"wp-block-code\"><code># Exact CPU model and family\nlscpu | grep -E \"Model name|Socket|Core|Thread|CPU MHz\"\n\n# Hypervisor and virtualization type\nlscpu | grep -i hypervisor\n\n# Stepping and microcode\ngrep -m1 \"model name\" \/proc\/cpuinfo<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Interpret the output like this: an <em>AMD EPYC 9654<\/em> or <em>Intel Xeon Platinum 8480+<\/em> line means you are on current-generation hardware. A <em>Xeon E5-2690 v2<\/em> or <em>E5-2670<\/em> means the host is running decade-old CPUs, and even a generous core allocation will feel slow for latency-sensitive work. Next, benchmark the single-core speed to see how much of that CPU you actually get:<\/p>\n<pre class=\"wp-block-code\"><code># sysbench single-core events per second\nsysbench cpu run --threads=1 --cpu-max-prime=20000\n\n# AES-NI throughput (matters for TLS termination)\nopenssl speed -elapsed aes-256-cbc<\/code><\/pre>\n<p class=\"wp-block-paragraph\">A current-generation EPYC or Xeon core typically scores 3,000\u20134,000 events\/sec on the sysbench prime test. If your single-core score sits below 2,000 events\/sec, you are either on old hardware or a heavily oversubscribed host \u2014 both are reasons to benchmark the competition before committing.<\/p>\n<h2 class=\"wp-block-heading\">2. Check What Your RAM Really Is<\/h2>\n<p class=\"wp-block-paragraph\">RAM quantity is guaranteed by the hypervisor, but RAM <em>quality<\/em> is not. DDR3 vs DDR4 vs DDR5 changes memory bandwidth substantially, and ECC matters if you plan to run databases. When the host exposes DMI information to the guest, you can read the memory config directly:<\/p>\n<pre class=\"wp-block-code\"><code># Show memory speed, type, and ECC status (works on many KVM guests)\nsudo dmidecode -t memory | grep -E \"Type:|Speed:|Error Correction|Size:\" | head -20\n\n# When dmidecode is blocked, measure bandwidth empirically\nsudo apt install mbw -y\nmbw 256<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Not all VPS guests can see DMI data \u2014 OpenVZ\/LXC containers and some locked-down KVM images hide it. In that case, <code>mbw<\/code> gives you a usable bandwidth number: expect roughly 10\u201315 GB\/s per channel of modern DDR4\/DDR5. If your memory bandwidth is a fraction of that, the plan may be oversold or the host oversubscribed. If you are choosing between plans rather than verifying an existing one, our <a href=\"https:\/\/virtualserversvps.com\/#providers\">VPS provider comparison table<\/a> notes which hosts run DDR5 and ECC-equipped platforms.<\/p>\n<h2 class=\"wp-block-heading\">3. Identify the Storage Tier with fio<\/h2>\n<p class=\"wp-block-paragraph\">\u201cSSD storage\u201d on a spec sheet can mean anything from a PCIe 4.0 NVMe drive to a SATA SSD to an HDD with a small flash cache in front of it. The sequential speed and, more importantly, the random 4K IOPS tell you which tier you actually landed on:<\/p>\n<pre class=\"wp-block-code\"><code># Sequential throughput\nfio --name=seqread --rw=read --bs=1M --size=1G --runtime=20 --direct=1 --group_reporting\n\n# Random 4K IOPS (the number that predicts database performance)\nfio --name=rand4k --rw=randread --bs=4k --size=1G --runtime=30 --iodepth=32 --direct=1 --group_reporting\n\n# Identify the block device and scheduler\nlsblk -d -o NAME,ROTA,SIZE,MODEL\ncat \/sys\/block\/vda\/queue\/scheduler 2>\/dev\/null || cat \/sys\/block\/sda\/queue\/scheduler<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Use these reference points: NVMe drives deliver 3,000+ MB\/s sequential and hundreds of thousands of 4K IOPS; SATA SSDs top out near 550 MB\/s with roughly 50\u201390K IOPS; and an HDD (even \u201ccached\u201d) will show single-digit MB\/s on random 4K writes. If <code>lsblk<\/code> reports a rotational device (<code>ROTA=1<\/code>) on a plan advertised as SSD, that alone is grounds for a support ticket \u2014 or a refund.<\/p>\n<h2 class=\"wp-block-heading\">4. What to Do When the Hardware Doesn\u2019t Match<\/h2>\n<p class=\"wp-block-paragraph\">Document your findings before contacting support. Save the output of <code>lscpu<\/code>, <code>dmidecode<\/code>, and the fio results, then check the provider\u2019s own documentation for the expected hardware generation of your plan tier. Older hardware is not necessarily a violation \u2014 budget providers often publish \u201cprevious-gen CPUs\u201d in their terms \u2014 but it is a reason to negotiate or move. For workloads that genuinely need current CPUs, NVMe-only storage, and dedicated (non-burstable) cores, compare the plans side by side and pick the one that publishes real hardware details instead of vague marketing language.<\/p>\n<h2 class=\"wp-block-heading\">Quick Verification Checklist<\/h2>\n<ol class=\"wp-block-list\">\n<li>Run <code>lscpu<\/code> and confirm the CPU model is current-generation (EPYC 9004 \/ Xeon Scalable 4th gen or newer).<\/li>\n<li>Run the single-core sysbench test and confirm 3,000+ events\/sec.<\/li>\n<li>Check RAM type and ECC via <code>dmidecode<\/code>, or measure bandwidth with <code>mbw<\/code>.<\/li>\n<li>Run the fio 4K random test and confirm the IOPS match the advertised storage tier.<\/li>\n<li>Confirm the block device is non-rotational with <code>lsblk<\/code>.<\/li>\n<li>Re-run the same suite on any competitor you are evaluating so the comparison is apples-to-apples.<\/li>\n<\/ol>\n<p class=\"wp-block-paragraph\">Hardware verification takes ten minutes and turns \u201ctrust us\u201d marketing into measurable facts. A provider that publishes its CPU generation and storage tier openly is usually the same provider whose servers pass these checks \u2014 and for that comparison, check out our <a href=\"https:\/\/virtualserversvps.com\/#providers\">VPS guides and provider comparison table<\/a> before you buy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the ever-evolving world of web hosting, a VPS (Virtual Private Server) offers a compelling solution for businesses and individuals seeking a balance between performance and cost. If you&#8217;re considering investing in a VPS, understanding the key features, benefits, and steps to buy a VPS virtual server is essential for making an informed decision.<\/p>\n","protected":false},"author":1,"featured_media":74,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":9,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-73","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vps-guides-tutorials"],"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>How to Verify a VPS Provider&#039;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning - Virtual Servers VPS Blog<\/title>\n<meta name=\"description\" content=\"In the ever-evolving world of web hosting, a VPS (Virtual Private Server) offers a compelling solution for businesses and individuals seeking a balance between performance and cost. If you&#039;re considering investing in a VPS, understanding the key features, benefits, and steps to buy a VPS virtual server is essential for making an informed decision.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Verify a VPS Provider&#039;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning\" \/>\n<meta property=\"og:description\" content=\"How to Verify a VPS Provider&#039;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-25T02:13:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-03T22:09:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"426\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/\",\"name\":\"How to Verify a VPS Provider's Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg\",\"datePublished\":\"2025-11-25T02:13:54+00:00\",\"dateModified\":\"2026-09-03T22:09:20+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"description\":\"In the ever-evolving world of web hosting, a VPS (Virtual Private Server) offers a compelling solution for businesses and individuals seeking a balance between performance and cost. If you're considering investing in a VPS, understanding the key features, benefits, and steps to buy a VPS virtual server is essential for making an informed decision.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg\",\"contentUrl\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg\",\"width\":640,\"height\":426},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Verify a VPS Provider&#8217;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Verify a VPS Provider's Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning - Virtual Servers VPS Blog","description":"In the ever-evolving world of web hosting, a VPS (Virtual Private Server) offers a compelling solution for businesses and individuals seeking a balance between performance and cost. If you're considering investing in a VPS, understanding the key features, benefits, and steps to buy a VPS virtual server is essential for making an informed decision.","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:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Verify a VPS Provider's Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning","og_description":"How to Verify a VPS Provider's Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning","og_url":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2025-11-25T02:13:54+00:00","article_modified_time":"2026-09-03T22:09:20+00:00","og_image":[{"width":640,"height":426,"url":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg","type":"image\/jpeg"}],"author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/","url":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/","name":"How to Verify a VPS Provider's Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage"},"image":{"@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg","datePublished":"2025-11-25T02:13:54+00:00","dateModified":"2026-09-03T22:09:20+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"description":"In the ever-evolving world of web hosting, a VPS (Virtual Private Server) offers a compelling solution for businesses and individuals seeking a balance between performance and cost. If you're considering investing in a VPS, understanding the key features, benefits, and steps to buy a VPS virtual server is essential for making an informed decision.","breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#primaryimage","url":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg","contentUrl":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/11\/8866-1.jpg","width":640,"height":426},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/vps-hardware-specs-cpu-ram-storage-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Verify a VPS Provider&#8217;s Hardware Claims: lscpu, dmidecode, and fio Checks After Provisioning"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/73","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=73"}],"version-history":[{"count":4,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/73\/revisions"}],"predecessor-version":[{"id":1043,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/73\/revisions\/1043"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media\/74"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=73"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=73"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=73"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}