{"id":15740,"date":"2025-09-20T20:55:00","date_gmt":"2025-09-20T15:25:00","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15740"},"modified":"2025-09-22T12:56:17","modified_gmt":"2025-09-22T07:26:17","slug":"how-to-access-an-aws-rds-mysql-database-using-mysql-workbench","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/","title":{"rendered":"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key"},"content":{"rendered":"\n<p>Accessing an AWS RDS MySQL database from MySQL Workbench can sometimes be tricky, especially when the RDS instance is not publicly accessible. One common solution is to use an EC2 instance as a jump host or bastion host. In this guide, we\u2019ll walk you through how to securely access your RDS MySQL database using MySQL Workbench, leveraging a private key for SSH tunneling via your EC2 instance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\">Prerequisites<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>RDS MySQL Instance: An AWS RDS MySQL instance should already be set up.<\/li>\n\n\n\n<li>EC2 Instance: An EC2 instance acting as a jump host.<\/li>\n\n\n\n<li>MySQL Workbench: Installed on your local machine.<\/li>\n\n\n\n<li>Private Key: The private SSH key (id_rsa) used for accessing the EC2 instance.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-set-up-your-ec2-instance-jump-host\"><strong>Step 1<\/strong>: Set Up Your EC2 Instance (Jump Host)<\/h2>\n\n\n\n<p>Before you can access your RDS MySQL database via MySQL Workbench, ensure that:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Your EC2 instance has access to your RDS MySQL instance (i.e., the EC2 instance should be in the same VPC or have network access to the RDS instance).<\/li>\n\n\n\n<li>The security group associated with the EC2 instance allows inbound SSH (port 22) from your IP.<\/li>\n\n\n\n<li>The security group of the RDS instance allows inbound MySQL traffic (port 3306) from the EC2 instance\u2019s security group.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-download-and-install-mysql-workbench\"><strong>Step 2<\/strong>: Download and Install MySQL Workbench<\/h2>\n\n\n\n<p>If you haven&#8217;t already, download MySQL Workbench from the official site: <a href=\"https:\/\/dev.mysql.com\/downloads\/workbench\/\">MySQL Workbench Downloads<\/a>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Windows: Download and run the MSI installer.<\/li>\n\n\n\n<li>macOS: Download the DMG file and follow the instructions.<\/li>\n\n\n\n<li>Linux: Use your package manager to install MySQL Workbench.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-set-up-mysql-workbench-to-use-ssh-tunneling\"><strong>Step 3<\/strong>: Set Up MySQL Workbench to Use SSH Tunneling<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Launch MySQL Workbench on your machine.<\/li>\n\n\n\n<li>Click on the &#8220;+&#8221; icon next to MySQL Connections to create a new connection.<\/li>\n\n\n\n<li>In the Connection Method dropdown, select Standard TCP\/IP over SSH.<\/li>\n\n\n\n<li>Now, fill in the following details:<\/li>\n<\/ul>\n\n\n\n<p>i. Connection Name: Give the connection a name, e.g., RDS-via-EC2.<\/p>\n\n\n\n<p>ii. SSH Hostname: The public IP address of your EC2 instance.<\/p>\n\n\n\n<p>iii. SSH Port: Typically, this is 22.<\/p>\n\n\n\n<p>iv. SSH Username: Use the username for your EC2 instance, such as ec2-user (for Amazon Linux) or ubuntu (for Ubuntu).<\/p>\n\n\n\n<p>v. SSH Key File: Browse to and select your private key file (id_rsa) that allows SSH access to the EC2 instance.<\/p>\n\n\n\n<p>vi. MySQL Hostname: This is the RDS endpoint (without http:\/\/ or https:\/\/), which you can find in the RDS Dashboard. For example, mydbinstance.xxxxxxx.us-east-1.rds.amazonaws.com.<\/p>\n\n\n\n<p>vii. MySQL Port: The default MySQL port is 3306.<\/p>\n\n\n\n<p>viii. MySQL Username: Enter your RDS MySQL username (the one you used when setting up the RDS instance, such as admin or root).<\/p>\n\n\n\n<p>ix. MySQL Password: Click on Store in Vault, and enter the password for the MySQL user.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-4-test-the-connection\"><strong>Step 4<\/strong>: Test the Connection<\/h3>\n\n\n\n<p>Once you\u2019ve entered all the necessary information, click on the Test Connection button. If everything is set up correctly, you should see a Connection Successful message.<\/p>\n\n\n\n<p>If the connection fails, double-check:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The private key file is correct and matches the EC2 instance.<\/li>\n\n\n\n<li>The security group settings for both EC2 and RDS.<\/li>\n\n\n\n<li>The MySQL credentials.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-5-save-and-connect\"><strong>Step 5<\/strong>: Save and Connect<\/h3>\n\n\n\n<p>After the connection test is successful, click OK to save the connection. You can now double-click the new connection you just created to access the RDS MySQL database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-6-troubleshooting\"><strong>Step 6<\/strong>: Troubleshooting<\/h3>\n\n\n\n<p>If you encounter issues, here are a few things to check:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SSH Access to EC2: Ensure you can SSH into the EC2 instance directly using the same private key.<\/li>\n\n\n\n<li>RDS Security Group: Verify that the RDS security group allows inbound traffic from the EC2 instance\u2019s security group on port 3306.<\/li>\n\n\n\n<li>Network Configuration: Make sure the EC2 instance and RDS are in the same VPC or can route to each other through a VPC Peering or VPN.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h3>\n\n\n\n<p>By using an EC2 instance as a jump host, you can securely access your AWS RDS MySQL database through an SSH tunnel with MySQL Workbench. This method is particularly useful when your RDS instance is not publicly accessible and you need an intermediary server (like EC2) to establish the connection.<\/p>\n\n\n\n<p>Following this process will allow you to work with your RDS instance just like any local MySQL database, all while maintaining security and ensuring that sensitive data is not exposed to the public internet.<\/p>\n\n\n\n<p>Need help setting up or troubleshooting your MySQL Workbench connection to AWS RDS via EC2 ? Our expert <a href=\"https:\/\/www.skynats.com\/aws-management\/\">AWS management services<\/a> team is here to assist you with secure, reliable, and hassle-free database access. Contact us today to get professional support and streamline your cloud operations.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Accessing an AWS RDS MySQL database from MySQL Workbench can sometimes be tricky, especially when the RDS instance is not publicly accessible. One common solution is to use an EC2 instance as a jump host or bastion host. In this guide, we\u2019ll walk you through how to securely access your RDS MySQL database using MySQL [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1006,1114,1115],"class_list":["post-15740","post","type-post","status-publish","format-standard","hentry","category-blog","tag-aws-management-services","tag-aws-rds-mysql-database","tag-mysql-workbench"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MySQL Workbench: Access AWS RDS via EC2 &amp; Private Key<\/title>\n<meta name=\"description\" content=\"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide &amp; start managing databases seamlessly today!\" \/>\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-access-an-aws-rds-mysql-database-using-mysql-workbench\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key\" \/>\n<meta property=\"og:description\" content=\"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide &amp; start managing databases seamlessly today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/\" \/>\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-09-20T15:25:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-22T07:26:17+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\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=\"Sourav AJ\" \/>\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.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key\",\"datePublished\":\"2025-09-20T15:25:00+00:00\",\"dateModified\":\"2025-09-22T07:26:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/\"},\"wordCount\":749,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"AWS Management Services\",\"AWS RDS MySQL Database\",\"MySQL Workbench\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/\",\"name\":\"MySQL Workbench: Access AWS RDS via EC2 & Private Key\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-09-20T15:25:00+00:00\",\"dateModified\":\"2025-09-22T07:26:17+00:00\",\"description\":\"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide & start managing databases seamlessly today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key\"}]},{\"@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\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MySQL Workbench: Access AWS RDS via EC2 & Private Key","description":"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide & start managing databases seamlessly today!","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-access-an-aws-rds-mysql-database-using-mysql-workbench\/","og_locale":"en_US","og_type":"article","og_title":"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key","og_description":"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide & start managing databases seamlessly today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-09-20T15:25:00+00:00","article_modified_time":"2025-09-22T07:26:17+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key","datePublished":"2025-09-20T15:25:00+00:00","dateModified":"2025-09-22T07:26:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/"},"wordCount":749,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["AWS Management Services","AWS RDS MySQL Database","MySQL Workbench"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/","url":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/","name":"MySQL Workbench: Access AWS RDS via EC2 & Private Key","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-09-20T15:25:00+00:00","dateModified":"2025-09-22T07:26:17+00:00","description":"Learn how to connect AWS RDS via EC2 with MySQL Workbench. Follow our guide & start managing databases seamlessly today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-access-an-aws-rds-mysql-database-using-mysql-workbench\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Access an AWS RDS MySQL Database Using MySQL Workbench via EC2 and Private Key"}]},{"@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\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15740","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\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15740"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15740\/revisions"}],"predecessor-version":[{"id":15742,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15740\/revisions\/15742"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15740"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15740"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15740"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}