{"id":17144,"date":"2025-12-16T17:34:02","date_gmt":"2025-12-16T12:04:02","guid":{"rendered":"https:\/\/www.skynats.com\/?p=17144"},"modified":"2025-12-16T17:34:05","modified_gmt":"2025-12-16T12:04:05","slug":"how-to-update-python-runtime-version-in-aws-lambda-using-aws-console","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/","title":{"rendered":"How To Update Python Runtime Version In Aws Lambda (using Aws Console)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p>AWS Lambda supports multiple Python runtime versions, and AWS periodically deprecates older versions while introducing newer, more secure, and better-performing ones. Updating your Lambda function\u2019s Python version helps you update Python runtime version in <a href=\"https:\/\/aws.amazon.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">AWS <\/mark><\/a>Lambda to ensure better performance, security patches, and long-term compatibility.<\/p>\n\n\n\n<p>In this blog, we\u2019ll walk through how to update a Lambda function\u2019s Python runtime version using the AWS Management Console (frontend) \u2014 no CLI or code changes required.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding, ensure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have access to the <strong>AWS Management Console<\/strong><\/li>\n\n\n\n<li>You have permissions to <strong>modify Lambda functions<\/strong><\/li>\n\n\n\n<li>Your application dependencies are compatible with the target Python version<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Step-by-Step Guide: Update Python Version via AWS Console<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 1: Log in to AWS Console<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <strong>AWS Management Console<\/strong><\/li>\n\n\n\n<li>Sign in with your AWS credentials<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: Navigate to Lambda Service<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the AWS Console, search for <strong>Lambda<\/strong><\/li>\n\n\n\n<li>Click on <strong>Lambda \u2192 Functions<\/strong><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 3: Select Your Lambda Function<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>From the list of functions, click on the <strong>Lambda function<\/strong> you want to update<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 4: Edit Runtime Settings<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scroll to the <strong>Runtime settings<\/strong> section<\/li>\n\n\n\n<li>Click on <strong>Edit<\/strong><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 5: Change the Python Runtime Version<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Under <strong>Runtime<\/strong>, select the required Python version\n<ul class=\"wp-block-list\">\n<li>Example: Python 3.9 \u2192 Python 3.11<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Click <strong>Save<\/strong><\/li>\n<\/ul>\n\n\n\n<p>The runtime version is updated immediately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Post-Update Checks (Important)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>1. Verify Function Execution<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <strong>Test<\/strong> tab in the Lambda console<\/li>\n\n\n\n<li>Run a test event to ensure the function executes successfully<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>2. Check CloudWatch Logs<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Navigate to <strong>Monitor \u2192 View logs in CloudWatch<\/strong><\/li>\n\n\n\n<li>Look for any runtime or dependency-related errors<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Validate Dependencies and Layers<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure all Python libraries support the updated runtime<\/li>\n\n\n\n<li>If Lambda Layers are used, confirm they are built for the same Python version<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h3>\n\n\n\n<p>Updating the Python runtime version of an AWS Lambda function via the AWS Console is a quick and straightforward process. However, it\u2019s important to validate dependencies and thoroughly test the function after the upgrade to avoid runtime issues.<\/p>\n\n\n\n<p>Keeping your Lambda functions on supported Python versions ensures better performance, security, and long-term stability.<\/p>\n\n\n\n<p><strong>Tip:<\/strong> Always test the update in a staging environment before applying changes to production.<\/p>\n\n\n\n<p>If you need to update Python runtime version in AWS Lambda and want the process reviewed before applying it in production, having experienced oversight can be useful. Teams providing <a href=\"https:\/\/www.skynats.com\/aws-management\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">AWS Management Services<\/mark><\/a>, such as Skynats, typically assist with runtime compatibility checks, safe updates through the AWS Console, and post-update validation\u2014a practical option when accuracy and stability matter.<br><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction AWS Lambda supports multiple Python runtime versions, and AWS periodically deprecates older versions while introducing newer, more secure, and better-performing ones. Updating your Lambda function\u2019s Python version helps you update Python runtime version in AWS Lambda to ensure better performance, security patches, and long-term compatibility. In this blog, we\u2019ll walk through how to update [&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":[722,835,1006,329,1195],"class_list":["post-17144","post","type-post","status-publish","format-standard","hentry","category-blog","tag-aws","tag-aws-lambda","tag-aws-management-services","tag-python","tag-python-runtime-version"],"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>Update Python Runtime Version in AWS Lambda via Console<\/title>\n<meta name=\"description\" content=\"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide\" \/>\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-update-python-runtime-version-in-aws-lambda-using-aws-console\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Update Python Runtime Version In Aws Lambda (using Aws Console)\" \/>\n<meta property=\"og:description\" content=\"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/\" \/>\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-12-16T12:04:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-16T12:04:05+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=\"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-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How To Update Python Runtime Version In Aws Lambda (using Aws Console)\",\"datePublished\":\"2025-12-16T12:04:02+00:00\",\"dateModified\":\"2025-12-16T12:04:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/\"},\"wordCount\":410,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"aws\",\"AWS Lambda\",\"AWS Management Services\",\"python\",\"Python Runtime Version\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/\",\"name\":\"Update Python Runtime Version in AWS Lambda via Console\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-12-16T12:04:02+00:00\",\"dateModified\":\"2025-12-16T12:04:05+00:00\",\"description\":\"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Update Python Runtime Version In Aws Lambda (using Aws Console)\"}]},{\"@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":"Update Python Runtime Version in AWS Lambda via Console","description":"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide","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-update-python-runtime-version-in-aws-lambda-using-aws-console\/","og_locale":"en_US","og_type":"article","og_title":"How To Update Python Runtime Version In Aws Lambda (using Aws Console)","og_description":"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide","og_url":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-12-16T12:04:02+00:00","article_modified_time":"2025-12-16T12:04:05+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How To Update Python Runtime Version In Aws Lambda (using Aws Console)","datePublished":"2025-12-16T12:04:02+00:00","dateModified":"2025-12-16T12:04:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/"},"wordCount":410,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["aws","AWS Lambda","AWS Management Services","python","Python Runtime Version"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/","url":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/","name":"Update Python Runtime Version in AWS Lambda via Console","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-12-16T12:04:02+00:00","dateModified":"2025-12-16T12:04:05+00:00","description":"Update Python Runtime Version in AWS Lambda easily using the AWS Console. Avoid errors, stay compliant, and upgrade now\u2014follow the guide","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-update-python-runtime-version-in-aws-lambda-using-aws-console\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Update Python Runtime Version In Aws Lambda (using Aws Console)"}]},{"@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\/17144","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=17144"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17144\/revisions"}],"predecessor-version":[{"id":17145,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17144\/revisions\/17145"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17144"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17144"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}