{"id":74356,"date":"2026-04-16T18:00:00","date_gmt":"2026-04-16T10:00:00","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=74356"},"modified":"2026-04-13T19:30:50","modified_gmt":"2026-04-13T11:30:50","slug":"sherlock-username-search-tool-guide","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/","title":{"rendered":"Find Usernames Across Social Networks with Sherlock"},"content":{"rendered":"<p>When you are trying to trace a person\u2019s public online footprint, you do not always need a full OSINT stack right away. Sometimes you just need an answer to a simpler question: where does this username exist?<\/p>\n<p>That is the job <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/sherlock-project\/sherlock\">Sherlock<\/a> handles. It gives you a quick way to check public username trails before doing deeper manual research.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg\" alt=\"Sherlock search results\" width=\"1280\" height=\"900\"><\/figure>\n<p>Sherlock is an open source <a href=\"https:\/\/www.hongkiat.com\/blog\/developers-command-line\/\">command-line tool<\/a> that checks whether a username appears across hundreds of websites and social platforms. Instead of testing one site at a time, you give it a username and let it do the repetitive work for you.<\/p>\n<p>If you want a quick way to see whether the same handle shows up on GitHub, Reddit, Instagram, TikTok, or a long tail of smaller platforms, Sherlock is one of the easiest tools to keep in your kit.<\/p>\n<h2 id=\"sherlock-in-a-nutshell\">Sherlock in a Nutshell<\/h2>\n<p>Sherlock is a username discovery tool maintained by the <code>sherlock-project<\/code> team.<\/p>\n<p>It checks a given username against a large list of supported sites and returns the profiles it finds. According to the project documentation, it supports checks across 400+ websites and social networks.<\/p>\n<p>It is an approachable OSINT tool. You do not need API keys, <a href=\"https:\/\/www.hongkiat.com\/blog\/productivity-chrome-extensions\/\">browser extensions<\/a>, or a complicated setup to start using it.<\/p>\n<h3 id=\"what-sherlock-does\">What Sherlock Does<\/h3>\n<p>Sherlock automates a task that is dull, repetitive, and easy to get wrong by hand.<\/p>\n<p>Instead of opening site after site and testing the same username manually, it builds the likely profile URL for each platform, checks the response, and reports what it finds.<\/p>\n<p>In practice, Sherlock can help you:<\/p>\n<ul>\n<li>find where a username is active online<\/li>\n<li>check several usernames in one run<\/li>\n<li>save results to text, CSV, or XLSX<\/li>\n<li>limit searches to specific sites<\/li>\n<li>route lookups through a proxy or Tor<\/li>\n<li>open found profiles in the browser<\/li>\n<li>load usernames from JSON for bulk checks<\/li>\n<\/ul>\n<p>Sherlock does not bypass privacy settings, unlock private accounts, or reveal hidden information. It works by checking publicly visible usernames and public profile patterns.<\/p>\n<p>Username reuse is common. Many people keep the same handle, or a close variation of it, across multiple platforms. That makes Sherlock useful to journalists, OSINT researchers, security researchers, recruiters, investigators, developers, creators, and ordinary users who want a quick starting point for mapping a public online presence.<\/p>\n<h2 id=\"getting-started\">Getting Started<\/h2>\n<p>Sherlock is a Python-based CLI tool, and the project offers a few installation options.<\/p>\n<h4 id=\"install-with-pipx\">Install With pipx<\/h4>\n<p>This is one of the cleanest ways to install Sherlock at user level:<\/p>\n<pre><code>pipx install sherlock-project<\/code><\/pre>\n<p>If you do not use <code>pipx<\/code>, you can install it with plain <code>pip<\/code> instead.<\/p>\n<h4 id=\"install-with-pip\">Install With pip<\/h4>\n<pre><code>pip install --user sherlock-project<\/code><\/pre>\n<h4 id=\"run-with-docker\">Run With Docker<\/h4>\n<p>If you would rather avoid installing Python packages directly:<\/p>\n<pre><code>docker run -it --rm sherlock\/sherlock<\/code><\/pre>\n<h4 id=\"other-package-sources\">Other Package Sources<\/h4>\n<p>The project also mentions community-maintained packages for platforms such as Debian, Ubuntu, Homebrew, Kali, and BlackArch. Those packages are not maintained directly by the Sherlock Project, so the <code>pipx<\/code> route is still the safer default recommendation.<\/p>\n<h2 id=\"how-to-use-sherlock\">How to Use Sherlock<\/h2>\n<p>Once Sherlock is installed, the basic pattern is simple: run it with a username, then add options depending on how broad or narrow you want the search to be.<\/p>\n<h4 id=\"search-one-username\">Search for One Username<\/h4>\n<pre><code>sherlock user123<\/code><\/pre>\n<p>That checks <code>user123<\/code> across supported sites and saves the results to a text file named after the username.<\/p>\n<h4 id=\"common-options\">Common Options<\/h4>\n<ul>\n<li><code>sherlock user1 user2 user3<\/code> to check several usernames in one run<\/li>\n<li><code>sherlock user123 --print-found<\/code> to only print matches<\/li>\n<li><code>sherlock user123 --print-all<\/code> to print found and not found results<\/li>\n<li><code>sherlock user123 --site GitHub --site Instagram<\/code> to limit checks to specific platforms<\/li>\n<li><code>sherlock user123 --csv<\/code> or <code>--xlsx<\/code> to export results<\/li>\n<li><code>sherlock user123 --output results\/user123.txt<\/code> to save to a custom file<\/li>\n<li><code>sherlock user123 --proxy socks5:\/\/127.0.0.1:1080<\/code> to run through a proxy<\/li>\n<li><code>sherlock user123 --tor<\/code> to run over Tor<\/li>\n<li><code>sherlock user123 --browse<\/code> to open found results in the browser<\/li>\n<\/ul>\n<h4 id=\"example-workflow\">Example Workflow<\/h4>\n<p>Suppose you want to check whether the username <code>johndoe<\/code> exists across major platforms. Start with:<\/p>\n<pre><code>sherlock johndoe --print-found<\/code><\/pre>\n<p>If the first pass looks useful and you want something you can review later, export it:<\/p>\n<pre><code>sherlock johndoe --print-found --csv<\/code><\/pre>\n<p>If you already know which platforms matter, narrow the search instead of checking everything:<\/p>\n<pre><code>sherlock johndoe --site GitHub --site Reddit --site Instagram<\/code><\/pre>\n<p>That is usually the better approach when you care more about a few relevant platforms than maximum coverage.<\/p>\n<h2 id=\"strengths-and-limits\">What Sherlock Is Good At, and Where It Falls Short<\/h2>\n<p>Sherlock is strong at speed and coverage. It checks a public username across a large number of sites and fits easily into a lightweight research workflow.<\/p>\n<p>Its limits matter just as much:<\/p>\n<ul>\n<li>it depends on public profile patterns and site responses<\/li>\n<li>it can only check the sites it knows about<\/li>\n<li>it may miss accounts if a platform changes how profile detection works<\/li>\n<li>a matching username does not prove identity<\/li>\n<\/ul>\n<p>That last point is the important one. If <code>coolhandle99<\/code> exists on five platforms, that does not automatically mean all five accounts belong to the same person. Sherlock gives you leads, not proof.<\/p>\n<h2 id=\"final-thoughts\">Final Thoughts<\/h2>\n<p>Sherlock does one job well: it helps you find where a username appears across a wide range of websites without doing the same checks by hand.<\/p>\n<p>That makes it a practical tool for OSINT work, username research, and general online footprint checks. Test it with a few known usernames and you will quickly see whether it belongs in your toolkit.<\/p>","protected":false},"excerpt":{"rendered":"<p>Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3393],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Find Usernames Across Social Networks with Sherlock - Hongkiat<\/title>\n<meta name=\"description\" content=\"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.\" \/>\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.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find Usernames Across Social Networks with Sherlock\" \/>\n<meta property=\"og:description\" content=\"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-16T10:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg\" \/>\n<meta name=\"author\" content=\"Hongkiat.com\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/\"},\"author\":{\"name\":\"Hongkiat.com\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/7cc686597d92f9086729e4bcc1577ba3\"},\"headline\":\"Find Usernames Across Social Networks with Sherlock\",\"datePublished\":\"2026-04-16T10:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/\"},\"wordCount\":822,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/sherlock-username-search-tool-guide\\\/sherlock-ui.jpg\",\"articleSection\":[\"Toolkit\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/\",\"name\":\"Find Usernames Across Social Networks with Sherlock - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/sherlock-username-search-tool-guide\\\/sherlock-ui.jpg\",\"datePublished\":\"2026-04-16T10:00:00+00:00\",\"description\":\"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/sherlock-username-search-tool-guide\\\/sherlock-ui.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/sherlock-username-search-tool-guide\\\/sherlock-ui.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/sherlock-username-search-tool-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find Usernames Across Social Networks with Sherlock\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/7cc686597d92f9086729e4bcc1577ba3\",\"name\":\"Hongkiat.com\",\"description\":\"This post is published by an HKDC (hongkiat.com) staff. (I.e., intern, staff writer, or editor).\",\"sameAs\":[\"https:\\\/\\\/www.hongkiat.com\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Find Usernames Across Social Networks with Sherlock - Hongkiat","description":"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.","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.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/","og_locale":"en_US","og_type":"article","og_title":"Find Usernames Across Social Networks with Sherlock","og_description":"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.","og_url":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2026-04-16T10:00:00+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg","type":"","width":"","height":""}],"author":"Hongkiat.com","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat.com","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/"},"author":{"name":"Hongkiat.com","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/7cc686597d92f9086729e4bcc1577ba3"},"headline":"Find Usernames Across Social Networks with Sherlock","datePublished":"2026-04-16T10:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/"},"wordCount":822,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg","articleSection":["Toolkit"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/","url":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/","name":"Find Usernames Across Social Networks with Sherlock - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg","datePublished":"2026-04-16T10:00:00+00:00","description":"Sherlock is a simple OSINT tool that checks where a username exists across hundreds of public websites and social networks.","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/sherlock-username-search-tool-guide\/sherlock-ui.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/sherlock-username-search-tool-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Find Usernames Across Social Networks with Sherlock"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/7cc686597d92f9086729e4bcc1577ba3","name":"Hongkiat.com","description":"This post is published by an HKDC (hongkiat.com) staff. (I.e., intern, staff writer, or editor).","sameAs":["https:\/\/www.hongkiat.com"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/com\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-jli","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=74356"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74356\/revisions"}],"predecessor-version":[{"id":74357,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74356\/revisions\/74357"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=74356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=74356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=74356"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=74356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}