{"id":14692,"date":"2025-12-27T11:29:35","date_gmt":"2025-12-27T05:59:35","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=14692"},"modified":"2025-12-27T11:29:37","modified_gmt":"2025-12-27T05:59:37","slug":"what-are-inodes-in-hosting","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/what-are-inodes-in-hosting","title":{"rendered":"What are Inodes in Hosting? (Meaning, Limits &amp; How to Reduce Usage)"},"content":{"rendered":"\n<p><strong>Inodes in hosting<\/strong> are the file system records that track every file, folder, email, and symlink on your server. Each item consumes one inode. Hosting providers set inode limits to control server resources. <\/p>\n\n\n\n<p>If you hit the limit, you can\u2019t create new files even if you still have disk space so reducing inode usage is essential. If you\u2019re new to web hosting, the term \u201cinodes in hosting\u201d can be confusing.<\/p>\n\n\n\n<p>In simple terms, inodes are counters for how many filesystem entries your account stores. Understanding what inodes are, how inode limits work, and how to reduce inode usage will keep your website fast, secure, and within your plan\u2019s resources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-an-inode\"><strong>What is an Inode?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"533\" src=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/image-127.png\" alt=\"\" class=\"wp-image-15060\" srcset=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/image-127.png 800w, https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/image-127-150x100.png 150w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/figure>\n\n\n\n<p>An inode is a data structure used by Linux\/Unix file systems <strong>(like ext4 and XFS)<\/strong> to store metadata about a file or directory: ownership, permissions, timestamps, and pointers to data blocks. It does not store the filename that\u2019s stored in the directory entry but every file and folder needs one inode to exist.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-inodes-work-in-hosting\"><strong>How Inodes Work in Hosting<\/strong>?<\/h3>\n\n\n\n<p>In web hosting, your account lives on a Linux server. The system allocates a finite pool of inodes to the storage volume. Your inode count increases by one for each of the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Files (PHP, HTML, CSS, JS, images, PDFs, logs)<\/li>\n\n\n\n<li>Directories (every folder is an inode)<\/li>\n\n\n\n<li>Emails and attachments stored on the server<\/li>\n\n\n\n<li>Symlinks, sockets, and some temporary files<\/li>\n<\/ul>\n\n\n\n<p>This is why many small files <strong>(e.g., cache files, email, session files)<\/strong> can push inode usage higher faster than a few large files. You might have plenty of disk space left while still hitting the inode limit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-an-inode-limit-and-why-do-hosts-enforce-it\"><strong>What is an Inode Limit and Why Do Hosts Enforce It?<\/strong><\/h2>\n\n\n\n<p>An inode limit is the maximum number of filesystem objects your <a href=\"https:\/\/www.youstable.com\/blog\/hosting-account-suspended\/\">hosting account<\/a> can store. Providers impose it to keep shared resources stable and responsive. Excessive inode counts slow backup processes, file indexing, antivirus scans, and degrade overall server performance.<\/p>\n\n\n\n<p><strong>Typical ranges by hosting type:-<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.youstable.com\/blog\/host-node-js-on-shared-hosting\/\"><strong>Shared hosting:<\/strong><\/a> 100,000\u2013500,000 inodes (some cap hard usage at 200k\u2013300k)<\/li>\n\n\n\n<li><strong>Managed WordPress:<\/strong> often 200,000\u2013400,000 (varies by provider)<\/li>\n\n\n\n<li><strong>VPS\/Cloud:<\/strong> soft or no per-account caps; practical limit is volume capacity and tuning<\/li>\n\n\n\n<li><strong>Dedicated\/Enterprise:<\/strong> limits defined by architecture and policy<\/li>\n<\/ul>\n\n\n\n<p>Reaching your inode limit can cause errors: cannot upload images, failed updates, broken email, and 500-level issues during cache writes or session handling.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-check-inode-usage\"><strong>How to Check Inode Usage<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"check-inodes-in-cpanel\"><strong>Check Inodes in cPanel<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>cPanel Home &gt; Statistics sidebar: look for \u201cFile Usage\u201d or \u201cInodes.\u201d<\/li>\n\n\n\n<li>cPanel &gt; Disk Usage: view directories consuming space (size-focused, but helps locate likely inode-heavy areas).<\/li>\n\n\n\n<li>cPanel &gt; Email Accounts &gt; Check mailbox sizes to identify email-related inode growth.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"check-inodes-via-ssh\"><strong>Check Inodes via SSH<\/strong><\/h3>\n\n\n\n<p>If your plan includes SSH, these commands help locate inode hotspots:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Show inode usage per mounted filesystem\ndf -i\n\n# Count all inodes in your home directory\nfind $HOME -xdev -printf '.' | wc -c\n\n# Top 20 directories by number of files (inodes)\nfind $HOME -xdev -type d -print0 | while IFS= read -r -d '' d; do\n  c=$(find \"$d\" -maxdepth 1 -xdev -print | wc -l)\n  printf \"%8d %s\\n\" \"$c\" \"$d\"\ndone | sort -nr | head -20\n\n# Count only files (exclude directories)\nfind $HOME -xdev -type f | wc -l\n\n# Common inode-heavy culprits\n# WordPress cache:\nfind $HOME\/public_html -path \"*\/cache\/*\" -type f | wc -l\n# Logs:\nfind $HOME -path \"*\/logs\/*\" -type f | wc -l\n# Email:\nfind $HOME\/mail -type f | wc -l<\/code><\/pre>\n\n\n\n<p>On servers using XFS or ext4, df -i shows the inode capacity and usage percentage per volume. A high percentage indicates you must prune files or migrate data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"why-inode-counts-spike-common-causes\"><strong>Why Inode Counts Spike: Common Causes<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>WordPress caching:<\/strong> thousands of small cache files across page, object, and fragment caches.<\/li>\n\n\n\n<li><strong>Image-heavy media libraries:<\/strong> thumbnails generated by themes\/plugins (10\u201320+ variants per upload).<\/li>\n\n\n\n<li>Backup plugins storing many restore points within public_html.<\/li>\n\n\n\n<li>Spam and bounces filling up mailboxes.<\/li>\n\n\n\n<li>Logs and debug files left unrotated (debug.log, access\/error logs, plugin logs).<\/li>\n\n\n\n<li>Session\/temp files not cleaned by cron.<\/li>\n\n\n\n<li>Staging\/dev copies of sites duplicating every file.<\/li>\n\n\n\n<li>Unmaintained plugins\/themes leaving artifacts or creating excessive files (e.g., security or analytics logs).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-reduce-inode-usage-step-by-step\"><strong>How to Reduce Inode Usage (Step-by-Step)<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"quick-wins-you-can-do-today\"><strong>Quick Wins You Can Do Today<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.youstable.com\/blog\/how-to-clear-cache-in-browser\/\"><strong>Clear caches:<\/strong><\/a> purge page\/object caches from your caching plugin or hosting panel.<\/li>\n\n\n\n<li>Delete old backups inside the web root. Keep only 1\u20132 latest copies and store the rest offsite (S3, local PC).<\/li>\n\n\n\n<li>Empty trash in WordPress (Posts, Pages, Media) and your <a href=\"https:\/\/www.youstable.com\/blog\/access-file-manager-in-cpanel\/\">file manager<\/a>.<\/li>\n\n\n\n<li>Prune unused themes\/plugins and their leftover directories.<\/li>\n\n\n\n<li>Clean email folders (Spam, Trash, Sent, Junk) and archive locally.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"wordpress-specific-cleanup\"><strong>WordPress-Specific Cleanup<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Limit thumbnails:<\/strong> use a single image-optimization plugin and disable extra thumbnail sizes you don\u2019t need. Regenerate thumbnails only once after changes.<\/li>\n\n\n\n<li><strong>Cache discipline:<\/strong> configure cache TTLs and avoid writing cache for logged-in users if unnecessary. Consider Redis object cache (fewer files, more memory-based).<\/li>\n\n\n\n<li><strong>Media hygiene:<\/strong> remove duplicate images, compress originals, and offload heavy media to object storage or a CDN.<\/li>\n\n\n\n<li><strong>Backup strategy:<\/strong> schedule offsite backups (S3\/Spaces). Store only the latest set on the server.<\/li>\n\n\n\n<li><strong>Logs and debug:<\/strong> disable WP_DEBUG_LOG in production and rotate plugin logs.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Disable persistent WP debug logging in <a href=\"https:\/\/www.youstable.com\/blog\/edit-wp-config-php-file-in-wordpress\/\">wp-config.php<\/a>\ndefine('WP_DEBUG', false);\ndefine('WP_DEBUG_LOG', false);\ndefine('WP_DEBUG_DISPLAY', false);<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"find-and-remove-heavy-inode-directories\"><strong>Find and Remove Heavy Inode Directories<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Identify mega-caches and temp files\nfind $HOME\/public_html -path \"*\/cache\/*\" -type f -print | head\nfind $HOME -path \"*\/tmp\/*\" -type f -print | head\n\n# Delete known safe cache folders (replace path with your cache plugin's cache dir)\nrm -rf $HOME\/public_html\/wp-content\/cache\/*\nrm -rf $HOME\/public_html\/wp-content\/uploads\/cache\/*\n\n# Delete old backup zips\/tars kept under web root (review before deleting)\nfind $HOME\/public_html -maxdepth 2 -type f \\( -name \"*.zip\" -o -name \"*.tar\" -o -name \"*.tar.gz\" \\) -size +10M -print<\/code><\/pre>\n\n\n\n<p>Always take a fresh backup before bulk deletions, and never remove folders you don\u2019t recognize. When in doubt, rename a directory first to test impact.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"email-and-cron-hygiene\"><strong>Email and Cron Hygiene<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use IMAP clean-up rules or client-side filters to auto-delete Spam\/Trash older than 30 days.<\/li>\n\n\n\n<li>Reduce mailbox count and avoid leaving large archives on the server\u2014download and store locally or in compliant cloud archives.<\/li>\n\n\n\n<li>Ensure <a href=\"https:\/\/www.youstable.com\/blog\/install-cron-jobs-on-linux\/\">cron jobs<\/a> purge sessions\/temp files periodically.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Example: delete session files older than 24 hours\nfind $HOME\/tmp -type f -name \"sess_*\" -mmin +1440 -delete\n\n# Example: delete logs older than 14 days\nfind $HOME\/public_html -type f -name \"*.log\" -mtime +14 -delete<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"architectural-strategies-to-prevent-inode-bloat\"><strong>Architectural Strategies to Prevent Inode Bloat<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Offload media to object storage\/CDN to cut local file counts.<\/li>\n\n\n\n<li><strong>Consolidate micro-files:<\/strong> where possible, store data in databases or memory caches instead of filesystem fragments.<\/li>\n\n\n\n<li>Keep staging sites outside production paths; auto-prune old staging copies.<\/li>\n\n\n\n<li>Use managed logging with rotation and retention caps.<\/li>\n\n\n\n<li><strong>Adopt a strict backup retention policy:<\/strong> e.g., 7 daily, 4 weekly, 3 monthly\u2014offsite by default.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"best-practices-to-stay-under-inode-limits\"><strong>Best Practices to Stay Under Inode Limits<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monthly maintenance:<\/strong> <a href=\"https:\/\/www.youstable.com\/blog\/clear-cache-in-npm\/\">clear caches<\/a>, remove old backups, review logs.<\/li>\n\n\n\n<li><strong>Quarterly audit:<\/strong> list top inode directories and refactor heavy areas.<\/li>\n\n\n\n<li><strong>Media discipline:<\/strong> standardize thumbnail sizes; auto-delete orphaned media.<\/li>\n\n\n\n<li><strong>Email policy:<\/strong> mailbox quotas and automated cleanup rules.<\/li>\n\n\n\n<li><strong>Automation:<\/strong> cron-based purges and plugin-scheduled cleanups.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-youstable-helps-with-inodes\"><strong>How YouStable Helps with Inodes<\/strong><\/h2>\n\n\n\n<p>At YouStable, our hosting stacks are tuned for high file system performance and practical inode allocations. We provide clear visibility into file usage, proactive alerts, and guidance to reduce inode counts. Need more headroom? Our VPS and Cloud plans scale resources easily, with object storage and CDN options to offload media and keep inode usage lean.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"troubleshooting-quick-diagnostic-workflow\"><strong>Troubleshooting: Quick Diagnostic Workflow<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check df -i to confirm inode saturation.<\/li>\n\n\n\n<li>List top 20 inode heavy directories (script above).<\/li>\n\n\n\n<li>Purge caches and temp files first; re-check inode count.<\/li>\n\n\n\n<li>Remove old backups under public_html; shift to offsite.<\/li>\n\n\n\n<li>Clean mailboxes; implement retention rules.<\/li>\n\n\n\n<li>Audit WordPress thumbnails and disable unnecessary sizes.<\/li>\n\n\n\n<li>If still high, consider media offload and\/or upgrade to VPS\/Cloud.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\"><strong>FAQ<\/strong>&#8216;<strong>s<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1766050249385\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-are-inodes-in-hosting-in-simple-words\"><strong>What are inodes in hosting, in simple words?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>They\u2019re counters for how many files, folders, emails, and links your account stores. Each item uses one inode. If you hit your plan\u2019s inode limit, you can\u2019t create new files, even if you have disk space left.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766050259248\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-is-a-good-inode-limit-for-a-wordpress-site\"><strong>What is a good inode limit for a WordPress site?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Most small-to-medium WordPress sites stay comfortable under 200k\u2013300k inodes with good housekeeping. Image-heavy, WooCommerce, or news sites may need higher limits or a VPS\/Cloud plan, plus media offload to keep inode counts manageable.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766050267015\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-reduce-inode-usage-quickly\"><strong>How do I reduce inode usage quickly?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Purge caches, delete old on-server backups, clean email Spam\/Trash, remove unused themes\/plugins, and rotate\/delete logs. These steps usually free up tens of thousands of inodes fast.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766050283640\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"do-large-files-use-more-inodes\"><strong>Do large files use more inodes?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. Each file consumes exactly one inode, regardless of size. A single 2 GB backup uses one inode, while 20,000 tiny cache files use 20,000 inodes. That\u2019s why lots of small files are the real problem.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766050306969\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"can-youstable-increase-my-inode-limit\"><strong>Can YouStable increase my inode limit?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>On shared plans, inode allocations are standardized for platform stability. If you need more headroom, our team can help you optimize or recommend a VPS\/Cloud plan with scalable resources and strategies like media offloading to keep inode usage low.<\/p>\n<p>Mastering inodes in hosting helps you prevent downtime, speed up maintenance tasks, and keep your site healthy. With smart cleanup habits and the right architecture, you\u2019ll stay comfortably under limits\u2014and if you outgrow them, YouStable is ready to scale with you.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Inodes in hosting are the file system records that track every file, folder, email, and symlink on your server. Each [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":16281,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"iawp_total_views":3,"footnotes":""},"categories":[350],"tags":[],"class_list":["post-14692","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/What-are-Inodes-in-Hosting.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14692","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=14692"}],"version-history":[{"count":4,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14692\/revisions"}],"predecessor-version":[{"id":16282,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14692\/revisions\/16282"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/16281"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=14692"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=14692"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=14692"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}