{"id":29111,"date":"2026-03-24T10:00:00","date_gmt":"2026-03-24T09:00:00","guid":{"rendered":"https:\/\/contabo.com\/blog\/?p=29111"},"modified":"2026-03-18T21:12:09","modified_gmt":"2026-03-18T20:12:09","slug":"linux-find-and-locate-commands","status":"publish","type":"post","link":"https:\/\/contabo.com\/blog\/linux-find-and-locate-commands\/","title":{"rendered":"Linux find and locate Commands\u00a0"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp\" alt=\"\" class=\"wp-image-29126\" srcset=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp 1200w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands-600x315.webp 600w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands-768x403.webp 768w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Getting comfortable with the Linux terminal really comes down to how well you can navigate messy directory structures. The Linux find command and Linux locate command are what you&#8217;ll grab when auditing security permissions, cleaning up log files, or hunting down that configuration script you&#8217;re pretty sure you saved somewhere. Both help you find files, sure, but they work in totally different ways behind the scenes.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-are-the-linux-find-and-locate-commands\">What Are the Linux find and locate Commands<\/h2>\n\n\n\n<p>The Linux find command searches in real time. It actually crawls through your live file system hierarchy looking for files that match whatever criteria you give it\u2014name, size, modification time, whatever. The Linux locate command works differently\u2014it queries a pre-built database. It checks a pre-indexed list of your file system, which means you get results almost instantly, but those results might not show changes that happened ten minutes ago.&nbsp;<\/p>\n\n\n\n<p>The whole find vs locate Linux debate really comes down to what matters more to you: speed or accuracy. Need the absolute latest data or want to filter by specific metadata? Go with find. Just need to quickly find a file in Linux by name across your entire system? Locate&#8217;s got you covered.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-find-works-in-real-time\">How find Works in Real Time<\/h3>\n\n\n\n<p>When you run the Linux find command, it kicks off a recursive search starting from wherever you tell it to. To find a file in Linux, this thing talks directly to the VFS (Virtual File System) layer and examines every single inode in the directory tree you specified. Yeah, this hammers your disk I\/O pretty hard, but it also means that if someone created a file literally one second ago, your search for how to find files in Linux will catch it.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-locate-uses-a-database\">How locate Uses a Database<\/h3>\n\n\n\n<p>The Linux locate command doesn&#8217;t touch your hard drive when you execute it. Instead, it reads from a database file, usually sitting at \/var\/lib\/mlocate\/mlocate.db. This database gets maintained by the updatedb Linux utility, which typically runs once a day as a cron job. When you use the locate command in Linux, the system just does a quick pattern match against this indexed list. Way faster than find for broad searches, but again, not real-time.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-vs-locate-when-to-use-each\">find vs locate: When to Use Each<\/h3>\n\n\n\n<p>Choosing between Linux locate vs find really depends on what you&#8217;re trying to accomplish:&nbsp;<\/p>\n\n\n\n<p>Use find when you need to filter by permissions, size, or age; when you want to execute some action on your results; or when you&#8217;re searching for files created after the last database update ran.&nbsp;<\/p>\n\n\n\n<p>Use locate when you need results right now, you only remember part of the filename, and you&#8217;re searching across your entire system instead of drilling into a specific subdirectory.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-linux-find-command-syntax-and-options\">Linux find Command Syntax and Options<\/h2>\n\n\n\n<p>If you&#8217;re serious about Linux administration, you need to master the Linux find command syntax. The tool follows a pretty logical structure that lets you get super specific with your filtering.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-basic-find-command-syntax\">Basic find Command Syntax<\/h3>\n\n\n\n<p>The standard structure of the find command in Linux looks like this:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find &#91;path] &#91;expression] &#91;action]<\/code><\/pre>\n\n\n\n<p>So if you want to search for a file in your current directory:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find . -name \"config.yaml\"<\/code><\/pre>\n\n\n\n<p>When looking at the Linux find command syntax, the dot (.) is your search path, -name is the test expression, and by default, the action is just printing the result to your console.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-command-options-reference\">find Command Options Reference<\/h3>\n\n\n\n<p>Beyond simple name searches, find command options let you pivot based on technical metadata. Some common Linux find command examples include:&nbsp;<\/p>\n\n\n\n<p><strong>-type<\/strong>: Filter by file, directory, or symbolic link.&nbsp;<\/p>\n\n\n\n<p><strong>-size<\/strong>: Filter by specific file sizes or ranges.&nbsp;<\/p>\n\n\n\n<p><strong>-mtime<\/strong>: Filter based on how many days ago the file was last modified.&nbsp;<\/p>\n\n\n\n<p><strong>-perm<\/strong>: Filter by octal or symbolic permissions.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-find-files-by-name-in-linux\">How to Find Files by Name in Linux<\/h2>\n\n\n\n<p>The most straightforward use case for the Linux find command is searching by filename.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-case-sensitive-vs-case-insensitive-search\">Case-Sensitive vs Case-Insensitive Search<\/h3>\n\n\n\n<p>By default, when you use Linux find by name with the -name flag, it cares about capitalization. If you&#8217;re not sure how something was capitalized, use Linux find iname instead. This makes your operation to find a file in Linux way more reliable:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/etc -iname \"NETWORK\" will catch \"network\", \"Network\", and \"NETWORK\".&nbsp;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-search-for-multiple-files-using-wildcards\">Search for Multiple Files Using Wildcards<\/h3>\n\n\n\n<p>You can use wildcards to broaden your Linux find command examples. To use Linux find file by extension, wrap your pattern in quotes so the shell doesn&#8217;t expand the wildcard before the command runs:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/var\/log -name \"*.log\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-and-delete-files-by-name\">Find and Delete Files by Name<\/h3>\n\n\n\n<p>The Linux find and delete workflow is incredibly powerful but also dangerous if you&#8217;re not careful. Use the -delete flag to remove files matching your criteria:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/tmp -name \"*.tmp\" -delete<\/code><\/pre>\n\n\n\n<p>Always run the command without -delete first to verify what you&#8217;re about to nuke before actually executing the removal.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-find-files-by-type-size-and-permissions\">Find Files by Type, Size and Permissions<\/h2>\n\n\n\n<p>Technical audits often need you to search for files meeting specific physical or security criteria.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-search-files-by-type\">Search Files by Type<\/h2>\n\n\n\n<p>Using the Linux find file type option, you can restrict results to specific filesystem objects:&nbsp;<\/p>\n\n\n\n<p><strong>f<\/strong>: Regular file&nbsp;<\/p>\n\n\n\n<p><strong>d<\/strong>: Directory&nbsp;<\/p>\n\n\n\n<p><strong>l<\/strong>: Symbolic link&nbsp;<\/p>\n\n\n\n<p>Running find \/home\/user -type d will return only directories.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-search-files-by-size\">Search Files by Size<\/h3>\n\n\n\n<p>When you&#8217;re managing disk space, Linux find file by size becomes essential. Use the Linux find by size flags like + for &#8220;greater than&#8221; or &#8211; for &#8220;less than&#8221;:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/var -size +100M<\/code><\/pre>\n\n\n\n<p>This Linux find command helps you identify those massive log files eating up your system resources.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-files-by-permissions\">Find Files by Permissions<\/h3>\n\n\n\n<p>To spot security vulnerabilities, use Linux find permissions. You can search for files with exactly 777 permissions:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/var\/www -perm 777<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-find-files-by-time-and-ownership\">Find Files by Time and Ownership<\/h2>\n\n\n\n<p>Advanced system maintenance means figuring out who owns a file and when it was last touched.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-using-timestamps-to-find-modified-files\">Using Timestamps to Find Modified Files<\/h3>\n\n\n\n<p>The Linux find modified files feature uses -mtime (days) or -mmin (minutes). To find files by date modified in Linux within the last 24 hours:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/etc -mtime -1<\/code><\/pre>\n\n\n\n<p>This is standard Linux find command practice when you&#8217;re troubleshooting recent system changes. When you need to use Linux find by date, these timestamp options become incredibly valuable for tracking down when things changed.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-files-by-owner-or-group\">Find Files by Owner or Group<\/h3>\n\n\n\n<p>If someone leaves your organization, you might need to use Linux find by owner to reassign their stuff.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/home -user john_doe<\/code><\/pre>\n\n\n\n<p>The Linux search file utility will walk through the tree and return every object owned by that specific UID or username.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-advanced-find-command-usage\">Advanced find Command Usage<\/h2>\n\n\n\n<p>The real power of the Linux find command shows up when you start processing the files it finds.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-using-find-with-exec-option\">Using find with exec Option<\/h3>\n\n\n\n<p>The Linux find exec flag lets you run another command on every file you found.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/var\/logs -name \"*.log\" -exec chmod 644 {} \\;<\/code><\/pre>\n\n\n\n<p>In these Linux find command examples, {} is a placeholder for the current file, and \\; terminates the command.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-files-using-regex\">Find Files Using Regex<\/h3>\n\n\n\n<p>For complex patterns, Linux find regex gives you regular expression support.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find . -regex \".*&#91;0-9]\\{3\\}.txt\"<\/code><\/pre>\n\n\n\n<p>This opens up advanced pattern matching that standard wildcards just can&#8217;t handle.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-empty-files-and-directories\">Find Empty Files and Directories<\/h3>\n\n\n\n<p>To clean up your filesystem, use:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/data -empty<\/code><\/pre>\n\n\n\n<p>This approach in Linux find command examples helps you identify redundant directories or failed downloads cluttering things up.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-recursive-file-search-with-find\">Recursive File Search with find<\/h3>\n\n\n\n<p>By default, the Linux find command recursive behavior is already enabled. It&#8217;ll descend into every subdirectory from your starting path. You can control how deep this Linux search directory goes using the -maxdepth flag:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/ -maxdepth 2 -name \"config*\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-linux-locate-command-syntax-and-setup\">Linux locate Command: Syntax and Setup<\/h2>\n\n\n\n<p>The Linux locate command is hands down the fastest way to find a file path if you know the name, assuming the database is set up correctly.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-install-the-locate-package\">Install the locate Package<\/h3>\n\n\n\n<p>Many modern distributions don&#8217;t include the locate command in Linux by default. On Ubuntu\/Debian, install it with:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install mlocate<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-update-the-locate-database\">How to Update the locate Database<\/h3>\n\n\n\n<p>Since it relies on an index, you need to run updatedb Linux to reflect recent changes.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo updatedb<\/code><\/pre>\n\n\n\n<p>If you skip this step, the Linux locate command won&#8217;t see files created since the last indexing cycle.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-locate-command-syntax\">locate Command Syntax<\/h3>\n\n\n\n<p>The locate command in Linux syntax is pretty straightforward:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate &#91;options] pattern<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-locate-command-examples\">locate Command Examples<\/h2>\n\n\n\n<p>While simpler than find, the Linux locate command still offers several useful flags for refining your output.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-search-for-exact-file-name\">Search for Exact File Name<\/h2>\n\n\n\n<p>To avoid getting results for every path containing your string, you can use -r (regex) or specific patterns. But honestly, a standard Linux locate command usually works fine for how to search for files in Linux.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-count-and-limit-search-results\">Count and Limit Search Results<\/h3>\n\n\n\n<p>If your search spits out thousands of lines, you can limit the output:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate -n 10 backup.tar.gz<\/code><\/pre>\n\n\n\n<p>Or just count the matches:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate -c .conf<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-ignore-case-sensitivity-with-locate\">Ignore Case Sensitivity with locate<\/h3>\n\n\n\n<p>Similar to find, use the -i flag with the Linux locate command:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate -i README<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-show-only-existing-files\">Show Only Existing Files<\/h3>\n\n\n\n<p>If files were deleted but the database hasn&#8217;t updated yet, locate will return &#8220;ghost&#8221; paths. Use -e to check if the file actually still exists on disk:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>locate -e myoldscript.sh<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-faq-linux-find-and-locate-commands\">FAQ: Linux find and locate Commands<\/h2>\n\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1773816538800\"><strong class=\"schema-faq-question\">How to find files in Linux?<\/strong> <p class=\"schema-faq-answer\">To find files in Linux, use the find command for real-time, filtered searches or the locate command for rapid, indexed searches. Both are essential tools in your Linux file search command arsenal.\u00a0<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1773816540485\"><strong class=\"schema-faq-question\">How to search for files in Linux terminal?\u00a0<\/strong> <p class=\"schema-faq-answer\">The most reliable way to search for files in Linux is the find command. It lets you search directory contents in Linux based on names, dates, sizes, and more. It&#8217;s the go-to Linux file search command for most administrators.\u00a0<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1773816541343\"><strong class=\"schema-faq-question\">What is the difference between find and locate?\u00a0<\/strong> <p class=\"schema-faq-answer\">In the whole find vs locate Linux debate, find is live and highly configurable, while locate is database-reliant and extremely fast. Use Linux locate vs find comparisons to decide based on whether you need speed or real-time accuracy.\u00a0<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1773816542646\"><strong class=\"schema-faq-question\">How to use find recursively in Linux?\u00a0<\/strong> <p class=\"schema-faq-answer\">The Linux find command recursive search is actually the default behavior. Just provide a starting directory, and it&#8217;ll search all nested folders automatically without any additional flags.\u00a0<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1773816543522\"><strong class=\"schema-faq-question\">How to install locate on Linux?\u00a0<\/strong> <p class=\"schema-faq-answer\">Run sudo apt install mlocate (Debian\/Ubuntu) or sudo yum install mlocate (RHEL\/CentOS), then follow up with updatedb Linux to initialize the database and make the locate command functional.\u00a0<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>How to use the Linux find and locate commands to search files by name, type, size, date, and permissions. Step-by-step examples for beginners.<\/p>\n","protected":false},"author":50,"featured_media":29126,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","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":"","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":"set","ast-page-background-enabled":"default","ast-page-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"categories":[18],"tags":[],"ppma_author":[1491],"class_list":["post-29111","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"uagb_featured_image_src":{"full":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp",1200,630,false],"thumbnail":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands-150x150.webp",150,150,true],"medium":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands-600x315.webp",600,315,true],"medium_large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands-768x403.webp",768,403,true],"large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp",1200,630,false],"1536x1536":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp",1200,630,false],"2048x2048":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2026\/03\/blog-head_-linux-find-and-locate-commands.webp",1200,630,false]},"uagb_author_info":{"display_name":"Tobias Mildenberger","author_link":"https:\/\/contabo.com\/blog\/author\/tobias\/"},"uagb_comment_info":0,"uagb_excerpt":"How to use the Linux find and locate commands to search files by name, type, size, date, and permissions. Step-by-step examples for beginners.","authors":[{"term_id":1491,"user_id":50,"is_guest":0,"slug":"tobias","display_name":"Tobias Mildenberger","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/077178d5dce6c3d4c0c0396857a7e544bfdf8adf04145fff5160b33a22e28b1f?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/29111","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/users\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/comments?post=29111"}],"version-history":[{"count":5,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/29111\/revisions"}],"predecessor-version":[{"id":29329,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/29111\/revisions\/29329"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media\/29126"}],"wp:attachment":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media?parent=29111"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/categories?post=29111"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/tags?post=29111"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=29111"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}