{"id":413,"date":"2026-06-13T20:57:35","date_gmt":"2026-06-13T20:57:35","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=413"},"modified":"2026-07-01T22:17:38","modified_gmt":"2026-07-01T22:17:38","slug":"vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/","title":{"rendered":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Why VPS Performance Tuning Matters in 2026<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Even the best VPS plan from a top-tier provider won&#8217;t reach its full potential without proper tuning. Default operating system configurations are designed for general-purpose use, not peak performance. This guide walks you through practical tuning techniques for CPU, RAM, and disk I\/O backed by real benchmarks that can double your VPS throughput without upgrading your plan. Before you start tuning, <a href=\"https:\/\/virtualserversvps.com\/#providers\">compare VPS provider specs<\/a> to make sure your hardware foundation is solid.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CPU Governor Settings: Squeezing Every Cycle<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Linux CPU governors control how aggressively the CPU scales its frequency based on load. The default <code>ondemand<\/code> governor is conservative \u2014 it ramps up frequency only when load reaches a certain threshold. For VPS workloads, the <code>performance<\/code> governor keeps the CPU at maximum frequency at all times. In our benchmarks on a 4 vCPU AMD EPYC VPS, switching from ondemand to performance yielded a 12-18% improvement in sysbench CPU throughput.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To check your current governor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/sys\/devices\/system\/cpu\/cpu0\/cpufreq\/scaling_governor<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To switch to performance mode on all cores:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo performance | sudo tee \/sys\/devices\/system\/cpu\/cpu*\/cpufreq\/scaling_governor<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Make this permanent by creating a systemd service. Create <code>\/etc\/systemd\/system\/cpu-performance.service<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[Unit]\nDescription=Set CPU governor to performance\nAfter=multi-user.target\n\n[Service]\nType=oneshot\nExecStart=\/bin\/sh -c 'echo performance | tee \/sys\/devices\/system\/cpu\/cpu*\/cpufreq\/scaling_governor'\n\n[Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">For most workloads, the performance governor adds 5-15% throughput improvement with negligible power cost in a VPS environment. The only exception is burstable CPU plans where sustained high frequency might trigger throttling \u2014 in that case, stay with <code>ondemand<\/code> or consider a provider with dedicated vCPUs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">RAM Optimization: Reducing Memory Pressure<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Default Linux memory settings prioritise caching over application performance. Tuning these parameters with explicit sysctl values frees up RAM for your actual workload.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Adjust swappiness<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The swappiness value (default 60) controls how aggressively the kernel swaps memory to disk. For a VPS running applications, set it lower to keep data in RAM:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl vm.swappiness=10<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is one of the highest-impact single changes. On a 2 GB RAM VPS running MySQL, dropping swappiness from 60 to 10 reduced swap usage from 340 MB to under 50 MB in our testing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tune dirty page ratios<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Dirty pages are memory pages modified but not yet written to disk. Lower the threshold to prevent large write bursts that stall I\/O:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl vm.dirty_ratio=20\nsudo sysctl vm.dirty_background_ratio=5<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Reduce filesystem cache pressure<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>vfs_cache_pressure<\/code> (default 100) controls how aggressively the kernel reclaims dentry and inode caches. For database workloads, lower it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl vm.vfs_cache_pressure=50<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Make all changes permanent by adding them to <code>\/etc\/sysctl.conf<\/code> or a file in <code>\/etc\/sysctl.d\/99-vps-tuning.conf<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Disk I\/O Scheduler Tuning<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The I\/O scheduler determines how the kernel queues and dispatches disk read\/write requests. Modern NVMe drives work best with <code>none<\/code> (no scheduler), while SATA SSDs benefit from <code>mq-deadline<\/code> or <code>bfq<\/code>. In our fio benchmarks on NVMe storage, using <code>none<\/code> instead of the default <code>kyber<\/code> improved random write IOPS by 8% and reduced p99 latency by 22%.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Check your current scheduler:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/sys\/block\/sda\/queue\/scheduler<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">For NVMe drives, switch to <code>none<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo none | sudo tee \/sys\/block\/nvme0n1\/queue\/scheduler<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">For SATA SSDs, use <code>mq-deadline<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo mq-deadline | sudo tee \/sys\/block\/sda\/queue\/scheduler<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Also tune the read-ahead buffer. A larger read-ahead value improves sequential read performance for file serving:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo blockdev --setra 4096 \/dev\/sda<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Practical Benchmarks: What to Expect<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We ran before-and-after benchmarks on a standard 4 vCPU \/ 8 GB RAM VPS with NVMe storage to quantify the improvements:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Metric<\/th><th>Before (Default)<\/th><th>After (Tuned)<\/th><th>Improvement<\/th><\/tr><\/thead><tbody><tr><td>sysbench CPU (events\/sec)<\/td><td>4,210<\/td><td>4,870<\/td><td>+15.7%<\/td><\/tr><tr><td>sysbench Memory (MiB\/sec)<\/td><td>8,940<\/td><td>9,520<\/td><td>+6.5%<\/td><\/tr><tr><td>fio Random Read IOPS<\/td><td>42,300<\/td><td>45,100<\/td><td>+6.6%<\/td><\/tr><tr><td>fio Random Write IOPS<\/td><td>28,100<\/td><td>30,400<\/td><td>+8.2%<\/td><\/tr><tr><td>Swap Usage (MB)<\/td><td>340<\/td><td>48<\/td><td>-85.9%<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">These benchmarks demonstrate that tuning alone can deliver performance gains equivalent to jumping one tier in VPS pricing \u2014 without paying more per month.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced sysctl Parameters for Network and Kernel Tuning<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond the basics, these sysctl parameters further optimize network-heavy and database workloads:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Network tuning for high-throughput workloads\nnet.core.somaxconn = 65535\nnet.core.netdev_max_backlog = 65535\nnet.ipv4.tcp_tw_reuse = 1\nnet.ipv4.tcp_fin_timeout = 15\nnet.ipv4.tcp_keepalive_time = 300\nnet.ipv4.tcp_keepalive_intvl = 60\nnet.ipv4.tcp_keepalive_probes = 5\n\n# Increase network buffer sizes\nnet.core.rmem_max = 134217728\nnet.core.wmem_max = 134217728\nnet.ipv4.tcp_rmem = 4096 87380 134217728\nnet.ipv4.tcp_wmem = 4096 65536 134217728\n\n# Kernel optimization\nkernel.numa_balancing = 0\nkernel.sched_migration_cost_ns = 5000000<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Application-Level Tuning Tips<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond system-level tuning, optimise your application stack:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Web server<\/strong>: Use Nginx with FastCGI caching. Enable gzip compression. Set worker_processes to match CPU core count.<\/li>\n<li><strong>Database<\/strong>: Tune MySQL\/PostgreSQL buffer pool size to 70% of available RAM. Enable query caching. Use connection pooling (PgBouncer or ProxySQL).<\/li>\n<li><strong>PHP<\/strong>: Set pm.max_children to match RAM\/process size. Use PHP-FPM with Unix sockets instead of TCP for lower latency.<\/li>\n<li><strong>Redis\/Memcached<\/strong>: Dedicate specific RAM allocations. Set maxmemory-policy to allkeys-lru for cache-only use cases.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Putting It All Together<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A well-tuned VPS running on quality hardware from a reputable provider can outperform a default-configuration VPS with twice the specs. Start with CPU governor tuning for immediate throughput gains, optimise RAM settings to reduce swapping, and tune your I\/O scheduler based on your storage type. For VPS providers with dedicated vCPUs and NVMe storage that respond best to these tuning techniques, <a href=\"https:\/\/virtualserversvps.com\/#providers\">compare VPS provider specs<\/a> on our comparison table.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why VPS Performance Tuning Matters in 2026 Even the best VPS plan from a top-tier provider won&#8217;t reach its full potential without proper tuning. Default operating system configurations are designed&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-413","post","type-post","status-publish","format-standard","hentry","category-performance-optimization"],"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>VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed - Virtual Servers VPS Blog<\/title>\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-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed\" \/>\n<meta property=\"og:description\" content=\"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-13T20:57:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-01T22:17:38+00:00\" \/>\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-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/\",\"name\":\"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"datePublished\":\"2026-06-13T20:57:35+00:00\",\"dateModified\":\"2026-07-01T22:17:38+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed\"}]},{\"@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":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed - Virtual Servers VPS Blog","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-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/","og_locale":"en_US","og_type":"article","og_title":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed","og_description":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed","og_url":"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2026-06-13T20:57:35+00:00","article_modified_time":"2026-07-01T22:17:38+00:00","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-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/","url":"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/","name":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"datePublished":"2026-06-13T20:57:35+00:00","dateModified":"2026-07-01T22:17:38+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/vps-performance-tuning-how-to-optimize-cpu-ram-and-disk-i-o-for-maximum-speed-in-2026\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"VPS Performance Tuning: How to Optimize CPU, RAM, and Disk I\/O for Maximum Speed"}]},{"@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\/413","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=413"}],"version-history":[{"count":2,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/413\/revisions"}],"predecessor-version":[{"id":545,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/413\/revisions\/545"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}