{"id":33,"date":"2025-10-10T04:51:36","date_gmt":"2025-10-10T04:51:36","guid":{"rendered":"https:\/\/askyourpc.com\/?post_type=docs&#038;p=33"},"modified":"2025-10-10T04:51:36","modified_gmt":"2025-10-10T04:51:36","password":"","slug":"external-hard-drive-detected-but-not-showing-in-windows-or-macos","status":"publish","type":"docs","link":"https:\/\/www.askyourpc.com\/es\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/","title":{"rendered":"External Hard Drive Detected but Not Showing in Windows or macOS"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your external hard drive powers on but does not appear in File Explorer or Finder, it usually means the system recognizes the device hardware but cannot access or mount its file system.<br>This problem is common after improper ejection, cable damage, or file-system corruption.<br>This guide shows how to safely verify power, confirm detection, and restore access without risking data loss.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What you\u2019ll learn<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>How to confirm that the external drive is physically detected<\/li>\n\n\n\n<li>How to mount or assign a drive letter manually<\/li>\n\n\n\n<li>How to check for file-system errors and repair them<\/li>\n\n\n\n<li>How to verify cable, port, and power status<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Estimated time:<\/strong> 15\u201325 minutes<br><strong>Skill level:<\/strong> Beginner to Intermediate<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Terms and Definitions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Term<\/th><th>Meaning<\/th><\/tr><\/thead><tbody><tr><td>Mount<\/td><td>The process of making a storage volume accessible to the operating system<\/td><\/tr><tr><td>File System<\/td><td>The data structure used by drives (e.g., NTFS, exFAT, APFS, HFS+)<\/td><\/tr><tr><td>Partition<\/td><td>A defined storage region within a physical drive<\/td><\/tr><tr><td>Disk Utility \/ Disk Management<\/td><td>Built-in macOS and Windows tools for managing storage devices<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Steps<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1 \u2014 Confirm Power and Connection<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Plug the drive directly into your computer, avoiding hubs or adapters.<\/li>\n\n\n\n<li>If the drive has a separate power supply, ensure it is plugged in and the LED indicator is lit.<\/li>\n\n\n\n<li>Try a different USB cable and another port on the computer.<\/li>\n\n\n\n<li>Listen or feel for drive spin or vibration when connected.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If there is no response at all, suspect a power issue, bad cable, or defective enclosure.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2 \u2014 Check if the System Detects the Drive<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-Disk\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Displays all drives detected by Windows, even those without letters.<br>If your drive appears here with no letter, it is recognized but not mounted.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS Terminal<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>diskutil list\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Lists all storage devices connected to the system.<br>If the drive is listed but not mounted, continue to the next step.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3 \u2014 Mount or Assign the Drive<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Right-click the <strong>Start<\/strong> menu and choose <strong>Disk Management<\/strong>.<\/li>\n\n\n\n<li>Locate the external drive; it may show as \u201cOffline\u201d or \u201cUnallocated.\u201d<\/li>\n\n\n\n<li>If it is \u201cOffline,\u201d right-click and choose <strong>Online<\/strong>.<\/li>\n\n\n\n<li>If it has no letter, right-click the partition and choose <strong>Change Drive Letter and Paths<\/strong> \u2192 <strong>Add<\/strong>.<\/li>\n\n\n\n<li>Assign an unused letter (for example, \u201cE\u201d) and click <strong>OK<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>diskutil mountDisk \/dev\/disk2\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace <code>\/dev\/disk2<\/code> with the identifier for your external drive from the previous command.<br>If you receive an error such as \u201cVolume not formatted,\u201d proceed to file-system repair.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4 \u2014 Check File-System Health<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chkdsk E: \/f\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace <code>E:<\/code> with your drive letter. This checks and repairs file-system errors.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>diskutil verifyDisk \/dev\/disk2\ndiskutil repairDisk \/dev\/disk2\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Performs verification and repairs any catalog or directory structure issues.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If the drive is read-only or formatted for another OS (for example, NTFS on macOS), install a compatible file-system driver or use a read-only access tool.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5 \u2014 Rebuild the Partition Table (Advanced)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If the drive appears as \u201cUnallocated\u201d or \u201cNot Initialized,\u201d the partition table may be corrupted.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-Disk | Where-Object IsOffline -Eq $false | Select-Object Number, PartitionStyle\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If the <code>PartitionStyle<\/code> is blank or shows \u201cRAW,\u201d you may need to re-initialize the disk.<br>To preserve data, use recovery software before re-initializing.<br>To format a new disk:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Initialize-Disk -Number 1 -PartitionStyle GPT\nNew-Partition -DiskNumber 1 -UseMaximumSize -AssignDriveLetter | Format-Volume -FileSystem NTFS -NewFileSystemLabel \"External\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>diskutil eraseDisk APFS \"External\" \/dev\/disk2\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Erases and reformats the disk. Only perform this if recovery is not required.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6 \u2014 Inspect System Logs<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-WinEvent -LogName System | Where-Object {$_.Message -like \"*disk*\"} | Select-Object TimeCreated, Message -First 10\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Displays the ten most recent disk-related system events.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>log show --predicate 'eventMessage CONTAINS \"disk\"' --last 1h\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows disk connection and error logs from the last hour.<br>Use these logs to identify repeated I\/O or mounting errors.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7 \u2014 Test on Another Computer<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If the drive works on another computer, the issue lies with your system\u2019s drivers or ports.<br>If it fails everywhere, the drive\u2019s enclosure or internal mechanism is likely faulty.<br>Try a different cable, and if possible, connect the bare drive through a new USB-to-SATA adapter.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8 \u2014 Verify Health and SMART Status<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PhysicalDisk | Select-Object FriendlyName, HealthStatus, OperationalStatus\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>diskutil info \/dev\/disk2 | grep SMART\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The SMART status should read \u201cVerified.\u201d<br>A failing or \u201cNot Supported\u201d result indicates drive wear or controller failure.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Verification<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When the drive mounts successfully:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>It appears in File Explorer or Finder.<\/li>\n\n\n\n<li>It shows normal capacity and volume label.<\/li>\n\n\n\n<li>Files open without delay or read errors.<\/li>\n\n\n\n<li>No new errors appear in system logs.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Run a brief copy test to confirm write functionality.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">An external hard drive that is detected but not visible in the file manager is usually caused by a missing mount point, damaged partition table, or file-system corruption.<br>Following these steps allows you to verify connection integrity, restore visibility, and confirm data access safely.<br>If the drive repeatedly disconnects or fails SMART checks, back up any accessible files immediately and consider replacing the device.<\/p>","protected":false},"excerpt":{"rendered":"<p>Overview If your external hard drive powers on but does not appear in File Explorer or Finder, it usually means the system recognizes the device hardware but cannot access or mount its file system.This problem is common after improper ejection, cable damage, or file-system corruption.This guide shows how to safely verify power, confirm detection, and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"doc_category":[12],"doc_tag":[],"class_list":["post-33","docs","type-docs","status-publish","hentry","doc_category-hardware-fixes"],"blocksy_meta":[],"year_month":"2026-08","word_count":791,"total_views":"1","reactions":{"happy":"0","normal":"0","sad":"0"},"author_info":{"name":"user","author_nicename":"user","author_url":"https:\/\/www.askyourpc.com\/es\/author\/user\/"},"doc_category_info":[{"term_name":"Hardware Fixes","term_url":"https:\/\/www.askyourpc.com\/es\/docs-category\/hardware-fixes\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC<\/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:\/\/www.askyourpc.com\/es\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC\" \/>\n<meta property=\"og:description\" content=\"Overview If your external hard drive powers on but does not appear in File Explorer or Finder, it usually means the system recognizes the device hardware but cannot access or mount its file system.This problem is common after improper ejection, cable damage, or file-system corruption.This guide shows how to safely verify power, confirm detection, and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.askyourpc.com\/es\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/\" \/>\n<meta property=\"og:site_name\" content=\"Ask Your PC\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/docs\\\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/docs\\\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\\\/\",\"name\":\"External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#website\"},\"datePublished\":\"2025-10-10T04:51:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/docs\\\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.askyourpc.com\\\/docs\\\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/docs\\\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/askyourpc.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docs\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"External Hard Drive Detected but Not Showing in Windows or macOS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#website\",\"url\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/\",\"name\":\"Ask Your PC\",\"description\":\"Helpful Computer Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#organization\",\"name\":\"Ask Your PC\",\"url\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"contentUrl\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"width\":512,\"height\":512,\"caption\":\"Ask Your PC\"},\"image\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC","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:\/\/www.askyourpc.com\/es\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/","og_locale":"es_ES","og_type":"article","og_title":"External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC","og_description":"Overview If your external hard drive powers on but does not appear in File Explorer or Finder, it usually means the system recognizes the device hardware but cannot access or mount its file system.This problem is common after improper ejection, cable damage, or file-system corruption.This guide shows how to safely verify power, confirm detection, and [&hellip;]","og_url":"https:\/\/www.askyourpc.com\/es\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/","og_site_name":"Ask Your PC","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.askyourpc.com\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/","url":"https:\/\/www.askyourpc.com\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/","name":"External Hard Drive Detected but Not Showing in Windows or macOS - Ask Your PC","isPartOf":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#website"},"datePublished":"2025-10-10T04:51:36+00:00","breadcrumb":{"@id":"https:\/\/www.askyourpc.com\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.askyourpc.com\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.askyourpc.com\/docs\/external-hard-drive-detected-but-not-showing-in-windows-or-macos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/askyourpc.com\/"},{"@type":"ListItem","position":2,"name":"Docs","item":"https:\/\/www.askyourpc.com\/tutorials\/"},{"@type":"ListItem","position":3,"name":"External Hard Drive Detected but Not Showing in Windows or macOS"}]},{"@type":"WebSite","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#website","url":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/","name":"Ask Your PC","description":"Helpful Computer Tutorials","publisher":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#organization","name":"Ask Your PC","url":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#\/schema\/logo\/image\/","url":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","contentUrl":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","width":512,"height":512,"caption":"Ask Your PC"},"image":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/33","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/comments?post=33"}],"version-history":[{"count":1,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/33\/revisions"}],"predecessor-version":[{"id":34,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/33\/revisions\/34"}],"wp:attachment":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/media?parent=33"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_category?post=33"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_tag?post=33"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}