{"id":14408,"date":"2025-03-12T18:35:47","date_gmt":"2025-03-12T13:05:47","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14408"},"modified":"2026-03-17T14:03:51","modified_gmt":"2026-03-17T08:33:51","slug":"how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/","title":{"rendered":"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL"},"content":{"rendered":"\n<p>If you&#8217;re working with a Red Hat Enterprise Linux (RHEL) server and need to install ODBC Driver 17 for SQL Server to establish a connection, follow the simple steps outlined below. This guide will also walk you through the installation of the unixODBC-devel package, which is often required for development purposes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-prerequisites\" style=\"font-size:18px\"><strong>Prerequisites<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>RHEL 7 or 8 system.<\/li>\n\n\n\n<li>Root or sudo privileges.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-download-microsoft-repository-configuration-package\" style=\"font-size:18px\"><strong>1. Download Microsoft Repository Configuration Package<\/strong><\/h2>\n\n\n\n<p>Before installing the <a href=\"https:\/\/learn.microsoft.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Microsoft<\/mark><\/a> ODBC Driver, we need to configure the Microsoft repository on your system. The following command will download the Microsoft repository configuration package based on your RHEL version.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -sSL -O https:\/\/packages.microsoft.com\/config\/rhel\/$(grep VERSION_ID \/etc\/os-release | cut -d '\"' -f 2 | cut -d '.' -f 1)\/packages-microsoft-prod.rpm<\/code><\/pre>\n\n\n\n<p>This command retrieves the appropriate repository configuration for your version of RHEL.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-install-the-repository-configuration-package\" style=\"font-size:18px\"><strong>2. Install the Repository Configuration Package<\/strong><\/h3>\n\n\n\n<p>Once the configuration file is downloaded, install the package to configure the Microsoft repository on your RHEL server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo yum install packages-microsoft-prod.rpm<\/code><\/pre>\n\n\n\n<p>After installation, it&#8217;s a good practice to delete the downloaded .rpm file to keep your server clean (optional):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm packages-microsoft-prod.rpm<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-remove-potential-conflicting-packages\" style=\"font-size:18px\"><strong>3. Remove Potential Conflicting Packages<\/strong><\/h3>\n\n\n\n<p>Sometimes, certain packages like unixODBC-utf16 can conflict with the installation of the necessary ODBC driver. To avoid these conflicts, you can remove the potentially problematic packages with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo yum remove unixODBC-utf16 unixODBC-utf16-devel<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-install-microsoft-odbc-driver-17-for-sql-server\" style=\"font-size:18px\"><strong>4. Install Microsoft ODBC Driver 17 for SQL Server<\/strong><\/h2>\n\n\n\n<p>Now that your system is properly configured, you can install the ODBC Driver 17 for SQL Server using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ACCEPT_EULA=Y yum install -y msodbcsql17<\/code><\/pre>\n\n\n\n<p>The ACCEPT_EULA=Y flag ensures that you accept the Microsoft End User License Agreement (EULA) before installation proceeds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-install-unixodbc-devel-package\" style=\"font-size:18px\"><strong>5. Install unixODBC-devel Package<\/strong><\/h3>\n\n\n\n<p>For development purposes, if you need to access the Unix ODBC development headers, you can install the unixODBC-devel package with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo yum install -y unixODBC-devel<\/code><\/pre>\n\n\n\n<p>This package provides development libraries and headers for working with ODBC data sources.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-6-optional-install-sqlcmd-and-bcp-tools\" style=\"font-size:18px\">6. <strong>Optional: Install SQLCMD and BCP Tools<\/strong><\/h4>\n\n\n\n<p>If you require additional tools such as sqlcmd (SQL command-line tool) and bcp (bulk copy utility) for interacting with your SQL Server instance, you can install them by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ACCEPT_EULA=Y yum install -y mssql-tools<\/code><\/pre>\n\n\n\n<p>Once the tools are installed, you can add their binaries to your system\u2019s PATH by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo 'export PATH=\"$PATH:\/opt\/mssql-tools\/bin\"' &gt;&gt; ~\/.bashrc\nsource ~\/.bashrc<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>You\u2019ve now successfully configured your RHEL server with Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and the unixODBC-devel package, and optionally installed the mssql-tools and development headers. With these tools in place, you can begin working with SQL Server databases on your Linux machine, using both the command-line tools and ODBC connections in your development projects.<\/p>\n\n\n\n<p>If you need assistance to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL, feel free to <a href=\"https:\/\/www.skynats.com\/contact-us\">contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re working with a Red Hat Enterprise Linux (RHEL) server and need to install ODBC Driver 17 for SQL Server to establish a connection, follow the simple steps outlined below. This guide will also walk you through the installation of the unixODBC-devel package, which is often required for development purposes. Prerequisites 1. Download Microsoft [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[983],"class_list":["post-14408","post","type-post","status-publish","format-standard","hentry","category-blog","tag-microsoft-odbc-driver-17"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Microsoft ODBC Driver 17 for SQL Server<\/title>\n<meta name=\"description\" content=\"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started\" \/>\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.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL\" \/>\n<meta property=\"og:description\" content=\"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-12T13:05:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T08:33:51+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Merin John\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL\",\"datePublished\":\"2025-03-12T13:05:47+00:00\",\"dateModified\":\"2026-03-17T08:33:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/\"},\"wordCount\":414,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Microsoft ODBC Driver 17\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/\",\"name\":\"Install Microsoft ODBC Driver 17 for SQL Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-03-12T13:05:47+00:00\",\"dateModified\":\"2026-03-17T08:33:51+00:00\",\"description\":\"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Microsoft ODBC Driver 17 for SQL Server","description":"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started","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.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL","og_description":"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-03-12T13:05:47+00:00","article_modified_time":"2026-03-17T08:33:51+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL","datePublished":"2025-03-12T13:05:47+00:00","dateModified":"2026-03-17T08:33:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/"},"wordCount":414,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Microsoft ODBC Driver 17"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/","name":"Install Microsoft ODBC Driver 17 for SQL Server","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-03-12T13:05:47+00:00","dateModified":"2026-03-17T08:33:51+00:00","description":"Learn how to install ODBC Driver 17 for SQL Server on RHEL with unixODBC-devel. Follow our step-by-step guide now and get started","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-microsoft-odbc-driver-17-msodbcsql17-for-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Microsoft ODBC Driver 17 (msodbcsql17) for SQL Server and unixODBC-devel on RHEL"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14408","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14408"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14408\/revisions"}],"predecessor-version":[{"id":17494,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14408\/revisions\/17494"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}