{"id":1048,"date":"2026-09-05T02:37:30","date_gmt":"2026-09-05T02:37:30","guid":{"rendered":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/?p=1048"},"modified":"2026-09-05T02:37:30","modified_gmt":"2026-09-05T02:37:30","slug":"rust-dedicated-server-wipe-schedule-hardware-setup","status":"publish","type":"post","link":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/","title":{"rendered":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Rust is one of the most demanding multiplayer survival games to self-host. Its dedicated server must handle hundreds of player-built structures, AI entities (animals, scientists, NPCs), and the physics of projectile ballistics \u2014 all while maintaining a stable tick rate under a forced monthly wipe cycle. This article covers the hardware requirements, wipe schedule management, and performance tuning needed to run a competitive Rust server on dedicated hardware.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before you provision hardware, <a href=\"https:\/\/www.bestdedicatedwebhostingserver.com\">check our dedicated server comparison table<\/a> to find a configuration that matches your target player count and wipe schedule.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding the Rust Wipe Cycle<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Facepunch Studios enforces a mandatory wipe on the first Thursday of every month at 2:00 PM EST. This wipe clears all player-built structures and resets the map, forcing every server to start fresh. In addition to the forced monthly wipe, server admins can choose to wipe weekly or bi-weekly. The wipe schedule directly affects server performance: a fresh wipe server has fewer entities and runs faster, while a server nearing the end of its cycle has hundreds of thousands of entities that strain the CPU.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Hardware Requirements by Server Population<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Player Slots<\/th><th>CPU<\/th><th>RAM<\/th><th>Storage<\/th><th>Network<\/th><\/tr><\/thead><tbody><tr><td>50\u2013100<\/td><td>6\u20138 cores @ 4.0+ GHz<\/td><td>16 GB<\/td><td>256 GB NVMe<\/td><td>1 Gbps<\/td><\/tr><tr><td>100\u2013200<\/td><td>8\u201312 cores @ 4.5+ GHz<\/td><td>24\u201332 GB<\/td><td>512 GB NVMe<\/td><td>1 Gbps<\/td><\/tr><tr><td>200\u2013300<\/td><td>12\u201316 cores @ 4.5+ GHz<\/td><td>32\u201348 GB<\/td><td>1 TB NVMe<\/td><td>1 Gbps<\/td><\/tr><tr><td>300+<\/td><td>16+ cores @ 4.5+ GHz<\/td><td>48\u201364 GB<\/td><td>2 TB NVMe<\/td><td>1\u201310 Gbps<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Rust uses a multi-threaded server architecture, unlike Minecraft&#8217;s single-threaded model. While the main game loop is still the primary bottleneck, Rust offloads entity AI, physics, and network I\/O to separate threads. This means more cores actually help \u2014 a 12-core CPU at 4.5 GHz will handle a 200-player server better than a 6-core CPU at 5.0 GHz.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Up the Rust Dedicated Server<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">SteamCMD Installation<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Install SteamCMD\nsudo add-apt-repository multiverse\nsudo dpkg --add-architecture i386\nsudo apt update\nsudo apt install steamcmd\n\n# Create a dedicated user\nsudo useradd -m -s \/bin\/bash rust\nsudo -u rust -i\n\n# Install Rust dedicated server\nsteamcmd +force_install_dir \/opt\/rustserver \\\n  +login anonymous \\\n  +app_update 258550 validate \\\n  +quit<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Startup Script with Oxide\/uMod<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Most Rust servers run Oxide (uMod) for plugin support. The startup command includes the server identity, map seed, world size, and RCON settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\n# \/opt\/rustserver\/start.sh\nexport LD_LIBRARY_PATH=\/opt\/rustserver\/RustDedicated_Data\/Plugins\/x86_64:$LD_LIBRARY_PATH\n\n.\/RustDedicated \\\n  -batchmode \\\n  +server.port 28015 \\\n  +rcon.port 28016 \\\n  +rcon.password \"your_strong_password\" \\\n  +server.tickrate 30 \\\n  +server.hostname \"My Rust Server\" \\\n  +server.description \"Monthly wipe | 2x gather | Solo\/Duo\/Trio\" \\\n  +server.url \"https:\/\/your-server-discord.com\" \\\n  +server.identity \"my_server\" \\\n  +server.seed 12345 \\\n  +server.worldsize 4000 \\\n  +server.maxplayers 150 \\\n  +server.saveinterval 300 \\\n  +server.level \"Procedural Map\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Performance Tuning for Rust<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Tick Rate and Entity Limits<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rust&#8217;s default tick rate is 30. This is generally sufficient \u2014 higher tick rates (60) increase CPU load dramatically without noticeable player benefit. The main performance knob is entity limits. Each player structure (wall, foundation, deployable) is an entity tracked by the server. A 200-player server with monthly wipes can accumulate 500,000+ entities by week four. To keep performance stable:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Set entity limits:<\/strong> Use the <code>server.maxentitycount<\/code> convar or Oxide plugins like EntityLimit to cap the number of entities per player or per grid.<\/li><li><strong>Shorten the wipe cycle:<\/strong> Bi-weekly wipes keep entity counts lower. Weekly wipes are common for high-population servers.<\/li><li><strong>Reduce world size:<\/strong> A 3000-size map generates fewer entities than a 4000-size map. Most competitive servers use 3000\u20133500.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Garbage Collection and Memory<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rust runs on Unity, which uses a garbage collector. As entities accumulate, the GC pauses become longer. Monitor GC pauses with the <code>gc.collect<\/code> console command. If pauses exceed 100ms, the server tick rate drops. Mitigations:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Schedule daily restarts (common practice for Rust servers).<\/li><li>Use the <code>server.saveinterval<\/code> setting to save less frequently (300 seconds is fine).<\/li><li>Allocate sufficient RAM. Rust servers use 8\u201316 GB base plus 50\u2013100 MB per active player.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">DDoS Protection for Rust Servers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Rust servers are among the most frequently DDoSed game servers. Competitors, disgruntled players, and script kiddies target popular servers. Your dedicated server provider must offer:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>At least 10 Gbps of always-on DDoS mitigation.<\/strong> Rust attacks commonly exceed 5 Gbps.<\/li><li><strong>Per-IP filtering.<\/strong> If the mitigation is per-rack, an attack on another server on the same rack can affect yours.<\/li><li><strong>UDP amplification protection.<\/strong> Rust uses UDP for game traffic. Attackers exploit UDP amplification attacks (DNS, NTP, SSDP reflectors).<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Wipe Management and Automation<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Automate your wipe process to reduce downtime. A typical wipe script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\n# Rust wipe script\nIDENTITY=\"my_server\"\nSERVER_DIR=\"\/opt\/rustserver\"\n\n# Stop the server\nsystemctl stop rustserver\n\n# Delete map and save files\nrm -rf \"$SERVER_DIR\/server\/$IDENTITY\/proceduralmap.*.map\"\nrm -rf \"$SERVER_DIR\/server\/$IDENTITY\/proceduralmap.*.sav\"\nrm -rf \"$SERVER_DIR\/server\/$IDENTITY\/player.blueprints.*.db\"\n\n# Update the server\nsteamcmd +force_install_dir \"$SERVER_DIR\" \\\n  +login anonymous \\\n  +app_update 258550 validate \\\n  +quit\n\n# Update Oxide if needed\n# wget -O \"$SERVER_DIR\/RustDedicated_Data\/Managed\/Oxide.Rust.dll\" https:\/\/umod.org\/games\/rust\/download\n\n# Start the server\nsystemctl start rustserver\n\necho \"$(date): Wipe complete\" &gt;&gt; \/var\/log\/rust-wipes.log<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Schedule this script with a systemd timer or cron to run on the first Thursday of each month. For bi-weekly wipes, add a second timer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Monitoring Server Health<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Key metrics to watch:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Server FPS:<\/strong> The server&#8217;s internal tick rate. Should stay at 30. Drops below 25 indicate CPU saturation.<\/li><li><strong>Entity count:<\/strong> Run <code>entities<\/code> in the console. If it exceeds 300,000, consider a wipe or entity limit plugin.<\/li><li><strong>Network in\/out:<\/strong> A 200-player server generates 40\u201380 Mbps of UDP traffic. Monitor with <code>iftop<\/code> or <code>nload<\/code>.<\/li><li><strong>RAM usage:<\/strong> Track with <code>htop<\/code>. If the server exceeds 80% of available RAM, schedule a restart.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Bottom Line<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Running a Rust dedicated server is a commitment. The forced monthly wipe cycle, high entity counts, and frequent DDoS attacks demand a server with multi-core CPU power, abundant RAM, NVMe storage, and robust DDoS protection. Automate the wipe process, monitor entity counts, and keep the server updated. With the right hardware and configuration, you can build a Rust community that survives wipe after wipe.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Find <a href=\"https:\/\/www.bestdedicatedwebhostingserver.com\">dedicated server hosting for Rust<\/a> on our comparison page to match your population and budget.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Rust is one of the most demanding multiplayer survival games to self-host. Its dedicated server must handle hundreds of player-built structures, AI entities (animals, scientists, NPCs), and the physics of&#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":0,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1048","post","type-post","status-publish","format-standard","hentry","category-server-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>Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning - Best Dedicated Web Hosting Server 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:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning\" \/>\n<meta property=\"og:description\" content=\"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"Best Dedicated Web Hosting Server Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-05T02:37:30+00:00\" \/>\n<meta name=\"author\" content=\"bestdedicatedwebhostingserver\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bestdedicatedwebhostingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"bestdedicatedwebhostingserver\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/\",\"url\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/\",\"name\":\"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning - Best Dedicated Web Hosting Server Blog\",\"isPartOf\":{\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#website\"},\"datePublished\":\"2026-09-05T02:37:30+00:00\",\"author\":{\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/6eb5f9ea35033fe8e67df44397e089b1\"},\"breadcrumb\":{\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#website\",\"url\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/\",\"name\":\"Best Dedicated Web Hosting Server Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/6eb5f9ea35033fe8e67df44397e089b1\",\"name\":\"bestdedicatedwebhostingserver\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/462a07aa37399bdb149e5f91dc3cd8906656bc4c7ed391a3b6f0199c5d2ab964?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/462a07aa37399bdb149e5f91dc3cd8906656bc4c7ed391a3b6f0199c5d2ab964?s=96&d=mm&r=g\",\"caption\":\"bestdedicatedwebhostingserver\"},\"sameAs\":[\"https:\/\/bestdedicatedwebhostingserver.com\/blog\",\"https:\/\/x.com\/bestdedicatedwebhostingserver\"],\"url\":\"https:\/\/bestdedicatedwebhostingserver.com\/blog\/author\/bestdedicatedwebhostingserver\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning - Best Dedicated Web Hosting Server 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:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/","og_locale":"en_US","og_type":"article","og_title":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning","og_description":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning","og_url":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/","og_site_name":"Best Dedicated Web Hosting Server Blog","article_published_time":"2026-09-05T02:37:30+00:00","author":"bestdedicatedwebhostingserver","twitter_card":"summary_large_image","twitter_creator":"@bestdedicatedwebhostingserver","twitter_misc":{"Written by":"bestdedicatedwebhostingserver","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/","url":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/","name":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning - Best Dedicated Web Hosting Server Blog","isPartOf":{"@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#website"},"datePublished":"2026-09-05T02:37:30+00:00","author":{"@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/6eb5f9ea35033fe8e67df44397e089b1"},"breadcrumb":{"@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/rust-dedicated-server-wipe-schedule-hardware-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Rust Dedicated Server: Wipe Schedule, Hardware Requirements, and Performance Tuning"}]},{"@type":"WebSite","@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#website","url":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/","name":"Best Dedicated Web Hosting Server Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/6eb5f9ea35033fe8e67df44397e089b1","name":"bestdedicatedwebhostingserver","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/462a07aa37399bdb149e5f91dc3cd8906656bc4c7ed391a3b6f0199c5d2ab964?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/462a07aa37399bdb149e5f91dc3cd8906656bc4c7ed391a3b6f0199c5d2ab964?s=96&d=mm&r=g","caption":"bestdedicatedwebhostingserver"},"sameAs":["https:\/\/bestdedicatedwebhostingserver.com\/blog","https:\/\/x.com\/bestdedicatedwebhostingserver"],"url":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/author\/bestdedicatedwebhostingserver\/"}]}},"_links":{"self":[{"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=1048"}],"version-history":[{"count":1,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1048\/revisions"}],"predecessor-version":[{"id":1059,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1048\/revisions\/1059"}],"wp:attachment":[{"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=1048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=1048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bestdedicatedwebhostingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=1048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}