{"id":30,"date":"2025-10-10T04:48:37","date_gmt":"2025-10-10T04:48:37","guid":{"rendered":"https:\/\/askyourpc.com\/?post_type=docs&#038;p=30"},"modified":"2025-10-10T04:49:31","modified_gmt":"2025-10-10T04:49:31","password":"","slug":"computer-overheats-when-usb-devices-are-connected-whats-causing-it","status":"publish","type":"docs","link":"https:\/\/www.askyourpc.com\/es\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/","title":{"rendered":"La computadora se sobrecalienta al conectar dispositivos USB: \u00bfcu\u00e1l es la causa?"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your computer begins to heat up or its fans spin loudly every time you connect a USB device, there is likely a power or driver issue behind it.<br>Common causes include a USB device drawing too much current, a shorted cable, or a background driver loop that keeps your CPU running continuously.<br>This guide explains how to identify the source of the overheating and safely correct it.<\/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 measure USB power draw and detect overcurrent<\/li>\n\n\n\n<li>How to inspect and reset the USB controller<\/li>\n\n\n\n<li>How to identify processes that overuse the CPU<\/li>\n\n\n\n<li>How to verify fan operation and temperature sensors<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Estimated time:<\/strong> 15\u201320 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>Power draw (mA)<\/td><td>Electrical current used by a USB device from the port<\/td><\/tr><tr><td>Power surge<\/td><td>A temporary overload that disables the port to prevent damage<\/td><\/tr><tr><td>Driver loop<\/td><td>A malfunctioning driver repeatedly trying to initialize a device<\/td><\/tr><tr><td>Thermal throttling<\/td><td>Automatic CPU slowdown to prevent overheating<\/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 Observe and Identify the Behavior<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Touch the area near your laptop\u2019s USB ports.\n<ul class=\"wp-block-list\">\n<li>If it gets noticeably warm only when something is plugged in, suspect that port or device.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Note any signs of stress such as high fan noise or rapid temperature rise.<\/li>\n\n\n\n<li>Unplug all USB devices and confirm whether the system cools back down.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If heat disappears when nothing is connected, one of your USB devices is overdrawing power or causing driver activity.<\/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 USB Power Draw<\/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-PnpDevice -Class USB | Select-Object FriendlyName, Status\nGet-WmiObject -Query \"Select * from Win32_USBHub\" | Select Name, DeviceID\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Lists connected USB devices and confirms whether any are inactive or malfunctioning.<\/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>system_profiler SPUSBDataType | grep -E \"Current Available|Current Required\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows how much current each device requests from the system.<br>If \u201cCurrent Required\u201d exceeds \u201cCurrent Available,\u201d that device is drawing too much power.<\/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 Use Different Ports or a Powered Hub<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Not all USB ports provide equal power output.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Try a port on the opposite side of your laptop or a rear port on a desktop.<\/li>\n\n\n\n<li>For high-power peripherals such as external drives or cameras, use a powered USB hub.<\/li>\n\n\n\n<li>If the overheating disappears when using the hub, your original port was overloaded.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Powered hubs supply their own electricity, relieving strain on the computer\u2019s motherboard.<\/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 Background Processes<\/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-Process | Sort CPU -Descending | Select -First 10\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows the ten processes using the most CPU resources.<\/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>top -l 1 | head -n 15\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Displays top CPU-consuming processes.<br>If CPU usage spikes when a USB device is connected, a driver loop or background task is running continuously.<\/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 Reset the USB Controller<\/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>Open <strong>Device Manager<\/strong>.<\/li>\n\n\n\n<li>Expand <strong>Universal Serial Bus Controllers<\/strong>.<\/li>\n\n\n\n<li>Right-click each \u201cUSB Root Hub\u201d entry, choose <strong>Disable device<\/strong>, then <strong>Enable device<\/strong>.<\/li>\n\n\n\n<li>Restart the computer.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PowerShell Alternative<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PnpDevice -Class USB | Disable-PnpDevice -Confirm:$false\nGet-PnpDevice -Class USB | Enable-PnpDevice -Confirm:$false\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>sudo killall -STOP -c usbd\nsudo killall -CONT usbd\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">These commands restart the macOS USB daemon without requiring a reboot.<\/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 Drivers and Firmware<\/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-WindowsDriver -Online | Where-Object {$_.Driver -like \"*USB*\"}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Lists current USB drivers. If any are outdated or flagged, update them through your manufacturer\u2019s support site.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>softwareupdate -l\nsoftwareupdate -i -a\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Ensures your USB stack and firmware are up to date through official macOS updates.<\/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 Check Thermal Sensors<\/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-WmiObject MSAcpi_ThermalZoneTemperature | Select-Object CurrentTemperature\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Divide the result by 10 and subtract 273 to get degrees Celsius.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo powermetrics --samplers smc | grep \"CPU die temperature\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Reports the CPU die temperature.<br>Temperatures consistently above 80\u00b0C while idle suggest a hardware or driver fault.<\/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 Reboot and Test Again<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Unplug all USB devices and restart the computer.<\/li>\n\n\n\n<li>Connect devices one at a time.<\/li>\n\n\n\n<li>Watch for fan speed or temperature changes after each connection.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If the system stays cool, you have isolated the problem device or port.<br>If heat returns immediately, that port may be damaged or the internal controller may be failing.<\/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\">After making corrections, verify normal operation.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Check<\/th><th>Command<\/th><th>Expected Result<\/th><\/tr><\/thead><tbody><tr><td>CPU usage<\/td><td><code>Get-Process<\/code> (Windows) or <code>top<\/code> (macOS)<\/td><td>Normal range below 15% when idle<\/td><\/tr><tr><td>Power draw<\/td><td><code>system_profiler SPUSBDataType<\/code><\/td><td>\u201cCurrent Required\u201d within \u201cAvailable\u201d limit<\/td><\/tr><tr><td>Temperature<\/td><td><code>powermetrics<\/code> o <code>WMIThermalZone<\/code><\/td><td>Below 70\u00b0C at idle<\/td><\/tr><tr><td>Fan behavior<\/td><td>Visual or audible check<\/td><td>Fan returns to quiet speed after reconnecting<\/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\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You have examined power draw, background activity, drivers, and sensors to determine why your computer overheats when USB devices are connected.<br>Most often the issue is a defective cable, an overdrawing USB device, or a driver that fails to sleep properly.<br>Using a powered hub and keeping drivers updated will prevent recurrence.<br>If the overheating continues after following these steps, have a technician inspect the USB power circuits for damage or shorted components.<\/p>","protected":false},"excerpt":{"rendered":"<p>Overview If your computer begins to heat up or its fans spin loudly every time you connect a USB device, there is likely a power or driver issue behind it.Common causes include a USB device drawing too much current, a shorted cable, or a background driver loop that keeps your CPU running continuously.This guide explains [&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-30","docs","type-docs","status-publish","hentry","doc_category-hardware-fixes"],"blocksy_meta":[],"year_month":"2026-08","word_count":756,"total_views":"8","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>Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - 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:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - Ask Your PC\" \/>\n<meta property=\"og:description\" content=\"Overview If your computer begins to heat up or its fans spin loudly every time you connect a USB device, there is likely a power or driver issue behind it.Common causes include a USB device drawing too much current, a shorted cable, or a background driver loop that keeps your CPU running continuously.This guide explains [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/\" \/>\n<meta property=\"og:site_name\" content=\"Ask Your PC\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T04:49:31+00:00\" \/>\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:\\\/\\\/askyourpc.com\\\/docs\\\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\\\/\",\"url\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\\\/\",\"name\":\"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - Ask Your PC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#website\"},\"datePublished\":\"2025-10-10T04:48:37+00:00\",\"dateModified\":\"2025-10-10T04:49:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/askyourpc.com\\\/docs\\\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\\\/#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\":\"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It?\"}]},{\"@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":"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - 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:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/","og_locale":"es_ES","og_type":"article","og_title":"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - Ask Your PC","og_description":"Overview If your computer begins to heat up or its fans spin loudly every time you connect a USB device, there is likely a power or driver issue behind it.Common causes include a USB device drawing too much current, a shorted cable, or a background driver loop that keeps your CPU running continuously.This guide explains [&hellip;]","og_url":"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/","og_site_name":"Ask Your PC","article_modified_time":"2025-10-10T04:49:31+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/","url":"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/","name":"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It? - Ask Your PC","isPartOf":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#website"},"datePublished":"2025-10-10T04:48:37+00:00","dateModified":"2025-10-10T04:49:31+00:00","breadcrumb":{"@id":"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/askyourpc.com\/docs\/computer-overheats-when-usb-devices-are-connected-whats-causing-it\/#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":"Computer Overheats When USB Devices Are Connected \u2014 What\u2019s Causing It?"}]},{"@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\/30","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=30"}],"version-history":[{"count":1,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/30\/revisions"}],"predecessor-version":[{"id":31,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/30\/revisions\/31"}],"wp:attachment":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/media?parent=30"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_category?post=30"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_tag?post=30"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}