{"id":4020,"date":"2026-01-30T13:35:08","date_gmt":"2026-01-30T13:35:08","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=4020"},"modified":"2026-04-08T12:37:57","modified_gmt":"2026-04-08T12:37:57","slug":"check-selenium-version-in-windows-cmd","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html","title":{"rendered":"How to Check Selenium Version in Windows Command Prompt?"},"content":{"rendered":"<style>\n.blg-advrt-main {\n    width: 100%;\n    max-width: 1000px;   \/* increase overall box width *\/\n    margin: 30px auto;   \/* center it nicely *\/\n}\n\n.blg-prm-bx {\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    gap: 40px;           \/* more spacing between image & text *\/\n    padding: 30px 40px;  \/* increase inner space *\/\n    border-radius: 12px;\n    box-shadow: 0 6px 18px rgba(0,0,0,0.08);\n}\n\n\/* Image *\/\n.blg-prm-bx img {\n    max-width: 320px;   \/* bigger image *\/\n    height: auto;\n}\n\n\/* Content area *\/\n.blg-prm-bx .content {\n    max-width: 550px;\n}\n\n\/* Heading *\/\n.blg-prm-bx h2 {\n    font-size: 26px;\n    margin-bottom: 12px;\n}\n\n\/* Paragraph *\/\n.blg-prm-bx p {\n    font-size: 16px;\n    line-height: 1.6;\n}\n\n\/* Button *\/\n.blg-prm-bx a {\n    display: inline-block;\n    margin-top: 15px;\n    padding: 12px 22px;\n    font-size: 15px;\n    border-radius: 6px;\n}\n<\/style>\n\n<p>When you are working with Selenium for test automation, knowing the exact Selenium version installed on your system is more important than it looks.&nbsp;<\/p>\n\n\n\n<p>Maybe a test is failing after an update, maybe a new feature is not working as expected, or maybe you\u2019re just trying to match your Selenium version with a compatible browser driver. Whatever the reason, checking the Selenium version quickly can save you a lot of troubleshooting time.<\/p>\n\n\n\n<p>The good news is, you don\u2019t need any special tools or complex steps. If Selenium is installed on your system, you can check its version directly using the Command Prompt.&nbsp;<\/p>\n\n\n\n<p>In this article, we will walk through simple, clear methods to check the Selenium version and explain what each command actually does so you know exactly what\u2019s happening behind the scenes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Before You Begin<\/strong><\/h2>\n\n\n\n<p>The command you use to check the Selenium version depends on how Selenium is installed and which language you\u2019re using. Selenium is commonly used with Java or Python, so we will cover both scenarios.&nbsp;<\/p>\n\n\n\n<p><strong>You need to make sure:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n\n<li>&nbsp;Command Prompt is open on your system.<\/li>\n\n\n<li>&nbsp;Java or Python is already installed (depending on your Selenium setup).<\/li>\n\n\n<li>&nbsp;Selenium is available in your project or system environment.<\/li>\n\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Methods to Check Selenium Version in Windows CMD<\/strong><\/h2>\n\n\n\n<p>This section explains different ways to find the installed Selenium version using Windows Command Prompt. You can follow the method based on whether you are using Selenium with Java or Python.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 1: Check Selenium Version Using Java (Command Prompt)<\/strong><\/h3>\n\n\n\n<p>This method is helpful if you are using Selenium with Java and Selenium is available as a standalone JAR file.<\/p>\n\n\n\n<p><strong>Step-by-step explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n\n<li>&nbsp;Open Command Prompt.<\/li>\n\n\n<li>&nbsp;Use the <strong class=\"code_syntax\">cd<\/strong> command to move to the folder where the Selenium JAR file is stored.<\/li>\n\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong><strong>cd C:\\selenium<\/strong><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Here, <strong class=\"code_syntax\">cd<\/strong> stands for change directory. It tells the Command Prompt to switch to the folder where Selenium is located.<\/p>\n\n\n\n<p>\u2794  Now run the following command:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>java -jar selenium-server-standalone.jar &#8211;version<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>What this command means:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\27A2';\">\n\n<li>&nbsp;<strong class=\"code_syntax\">java<\/strong> tells the system to use Java<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">-jar<\/strong> means you want to run a JAR file<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">selenium-server-standalone.jar<\/strong> is the Selenium file you\u2019re executing<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">&#8211;version<\/strong> is a flag that asks Selenium to display its version number<\/li>\n\n<\/ul>\n\n\n\n<p>Once you press Enter, the Selenium version will be displayed in the output.<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Selenium Server version: 3.141.59, revision: e82be7d358<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 2: Check Selenium Version Using Python (Command Prompt)<\/strong><\/h3>\n\n\n\n<p>This method is best if you are using Selenium with Python and have installed it using <strong class=\"code_syntax\">pip<\/strong>.<\/p>\n\n\n\n<p><strong>Step-by-step explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n\n<li>&nbsp;Open Command Prompt.<\/li>\n\n\n<li>&nbsp;Type the following command and press Enter:<\/li>\n\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>pip show selenium<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>What this command means:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\27A2';\">\n\n<li>&nbsp;<strong class=\"code_syntax\">pip<\/strong> is Python\u2019s package manager<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">show<\/strong> asks <strong class=\"code_syntax\">pip<\/strong> to display details about a package<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">selenium<\/strong> is the package name<\/li>\n\n<\/ul>\n\n\n\n<p>After running the command, you will see information such as the version number, installation location, and dependencies. Look for the line that says <strong>\u201cVersion.\u201d<\/strong><\/p>\n\n\n\n<p>How Output looks like:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>Name: selenium<\/strong><br><strong>Version: 4.17.2<\/strong><br><strong>Summary: Python bindings for Selenium<\/strong><br><strong>Home-page: https:\/\/www.selenium.dev\/<\/strong><br><strong>Author: Selenium Committers<\/strong><br><strong>Author-email: selenium-developers@googlegroups.com<\/strong><br><strong>License: Apache 2.0<\/strong><br><strong>Location: C:\\Users\\Username\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages<\/strong><br><strong>Requires: certifi, trio, trio-websocket, urllib3<\/strong><br><strong>Required-by:<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 3: Check Selenium Version Using Python Directly<\/strong><\/h3>\n\n\n\n<p>This method is helpful when you want to confirm the Selenium version from inside Python itself, especially if you\u2019re using virtual environments.<\/p>\n\n\n\n<p><strong>Step-by-step explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n\n<li>&nbsp;Open Command Prompt.<\/li>\n\n\n<li>&nbsp;Start Python with the command below:<\/li>\n\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>python<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This launches the Python interpreter.<\/p>\n\n\n\n<p>\u2794  Now, run the following commands to check the version.<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\ud83d\udccb<\/button><span class=\"copy-msg\">Copied!<\/span>\n<table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>import selenium<\/strong><br><strong>print(selenium.__version__)<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>What this does:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\27A2';\">\n\n<li>&nbsp;<strong class=\"code_syntax\">import<\/strong> selenium loads the Selenium package<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">selenium.__version__<\/strong> fetches the installed version<\/li>\n\n\n<li>&nbsp;<strong class=\"code_syntax\">print()<\/strong> displays the version on the screen<\/li>\n\n<\/ul>\n\n\n\n<p>Once done, you can exit Python by typing <strong>exit()<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Issues You May Face<\/strong><\/h2>\n\n\n\n<p>If you see errors like <strong class=\"code_syntax\">command not found<\/strong> or <strong>module not found<\/strong>, it usually means:<\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n\n<li>&nbsp;Selenium is not installed.<\/li>\n\n\n<li>&nbsp;Python or Java is not added to the system PATH<\/li>\n\n\n<li>&nbsp;You\u2019re using a different virtual environment.<\/li>\n\n<\/ul>\n\n\n\n<p>In such cases, make sure Selenium is installed correctly and that you are using the right environment.<\/p>\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/Knowledgebase\/windows-hosting.png\" alt=\"windows-hosting\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Your Terminal Deserves a Powerful Home!                    <\/div>\n                    <p>\n                        Launch your projects on a secure, scalable Windows VPS designed for strong performance.                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/servers\/windows-vps-hosting\">\n                            Get Windows VPS                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Checking the Selenium version in Command Prompt is a simple yet very useful task, especially when working on automation projects or debugging compatibility issues. Whether you are using Java or Python, a single command can quickly tell you which Selenium version is installed on your system.<\/p>\n\n\n\n<p>Now that you know multiple ways to check it and understand what each command does, you can confidently verify your Selenium setup whenever you need to. This small habit can save hours of confusion and help keep your automation environment clean and predictable.<\/p>\n\n\n\n<script>\nfunction copyCommand(btn) {\n  const td = btn.parentElement.querySelector(\"td.kb_firewall\");\n  const text = td.innerText.trim();\n\n  navigator.clipboard.writeText(text).then(() => {\n    const msg = btn.parentElement.querySelector(\".copy-msg\");\n    msg.style.display = \"inline-block\";\n    setTimeout(() => msg.style.display = \"none\", 1000);\n  });\n}\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>When you are working with Selenium for test automation, knowing the exact Selenium version installed on your system is more important than it looks.&nbsp; Maybe a test is failing after an update, maybe a new feature is not working as expected, or maybe you\u2019re just trying to match your Selenium version with a compatible browser [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-4020","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Check Selenium Version in Windows Command Prompt?<\/title>\n<meta name=\"description\" content=\"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.\" \/>\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.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Selenium Version in Windows Command Prompt?\" \/>\n<meta property=\"og:description\" content=\"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-30T13:35:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-08T12:37:57+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html\",\"name\":\"How to Check Selenium Version in Windows Command Prompt?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2026-01-30T13:35:08+00:00\",\"dateModified\":\"2026-04-08T12:37:57+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check Selenium Version in Windows Command Prompt?","description":"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.","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.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html","og_locale":"en_US","og_type":"article","og_title":"How to Check Selenium Version in Windows Command Prompt?","og_description":"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2026-01-30T13:35:08+00:00","article_modified_time":"2026-04-08T12:37:57+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html","name":"How to Check Selenium Version in Windows Command Prompt?","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2026-01-30T13:35:08+00:00","dateModified":"2026-04-08T12:37:57+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Discover how to check the Selenium version in Windows CMD with easy commands. A simple, quick, and beginner-friendly guide to automation testing.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/491\/check-selenium-version-in-windows-cmd.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/4020","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=4020"}],"version-history":[{"count":21,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/4020\/revisions"}],"predecessor-version":[{"id":4319,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/4020\/revisions\/4319"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=4020"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=4020"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=4020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}