{"id":20594,"date":"2025-11-07T08:25:54","date_gmt":"2025-11-07T02:55:54","guid":{"rendered":"https:\/\/vinish.dev\/?p=20594"},"modified":"2025-11-07T08:25:55","modified_gmt":"2025-11-07T02:55:55","slug":"oracle-systimestamp-function","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-systimestamp-function","title":{"rendered":"Oracle SYSTIMESTAMP Function: A Simple Guide"},"content":{"rendered":"\n<p>The <code>SYSTIMESTAMP<\/code> function in Oracle SQL is the high-precision version of <a href=\"https:\/\/vinish.dev\/oracle-sysdate-function\">SYSDATE<\/a>. It returns the exact current date, time (including fractional seconds), and time zone <strong>of the operating system where the database server is located.<\/strong><\/p>\n\n\n\n<p>The key feature of this function is its data type: it returns a <code>TIMESTAMP WITH TIME ZONE<\/code> value, which is the most complete and precise \"current time\" function available.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the SYSTIMESTAMP Function in Oracle?<\/h2>\n\n\n\n<p>The <code>SYSTIMESTAMP<\/code> function returns the server's exact system time. This is different from other time functions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>SYSDATE<\/code><\/strong>: Returns the server's time as a <code>DATE<\/code> type. This includes date and time but has no fractional seconds or time zone information.<\/li>\n\n\n\n<li><strong><a href=\"https:\/\/vinish.dev\/oracle-current_timestamp-function\">CURRENT_TIMESTAMP<\/a><\/strong>: Returns the time <em>of your session<\/em> as a <code>TIMESTAMP WITH TIME ZONE<\/code>. If you are in New York connecting to a server in London, <code>SYSTIMESTAMP<\/code> will return London time, and <code>CURRENT_TIMESTAMP<\/code> will return New York time.<\/li>\n\n\n\n<li><strong><a href=\"https:\/\/vinish.dev\/oracle-localtimestamp-function\">LOCALTIMESTAMP<\/a><\/strong>: Returns the time <em>of your session<\/em> as a <code>TIMESTAMP<\/code> (with no time zone).<\/li>\n<\/ul>\n\n\n\n<p><code>SYSTIMESTAMP<\/code> is best when you need to log an event with the highest possible precision, stamped with the server's local time zone.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SYSTIMESTAMP Function Syntax<\/h2>\n\n\n\n<p>The syntax for <code>SYSTIMESTAMP<\/code> is one of the simplest, as it takes no arguments:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SYSTIMESTAMP\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Oracle SYSTIMESTAMP Function Examples<\/h2>\n\n\n\n<p>Here are two practical examples of how to use <code>SYSTIMESTAMP<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Getting the Server's High-Precision Time with SYSTIMESTAMP<\/h3>\n\n\n\n<p>This example shows the default output of the function. It returns the full date, the time (down to 6 fractional seconds), and the server's time zone offset.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT \n  SYSTIMESTAMP \nFROM DUAL;\n<\/code><\/pre>\n\n\n\n<p><strong>Result:<\/strong> <em>(Your result will be different, but will follow this format)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SYSTIMESTAMP\n---------------------------------------------------------------------------\n07-NOV-25 08.23.45.123456 AM -08:00\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Converting SYSTIMESTAMP to Another Time Zone<\/h3>\n\n\n\n<p>A common use of <code>SYSTIMESTAMP<\/code> is to get the server's time and then immediately convert it to a standard time zone, like UTC, for consistent storage.<\/p>\n\n\n\n<p>You can do this using the <code>AT TIME ZONE<\/code> clause.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>-- This gets the server's current time and converts it to UTC\nSELECT \n  SYSTIMESTAMP AT TIME ZONE 'UTC' AS \"UTC_Time\"\nFROM DUAL;\n<\/code><\/pre>\n\n\n\n<p><strong>Result:<\/strong> <em>(Assuming the server time from Example 1, which was <code>-08:00<\/code>)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>UTC_Time\n---------------------------------------------------------------------------\n07-NOV-25 04.23.45.123456 PM UTC\n<\/code><\/pre>\n\n\n\n<p><em>Notice how the time has been adjusted from 8:23 AM to 4:23 PM to reflect the conversion to UTC.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The SYSTIMESTAMP function in Oracle SQL is the high-precision version of SYSDATE. It returns the exact current date, time (including fractional seconds), and time zone of the operating system where the database server is located. The key feature of this function is its data type: it returns a TIMESTAMP WITH TIME ZONE value, which is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1826,1807],"tags":[1822],"class_list":["post-20594","post","type-post","status-publish","format-standard","hentry","category-datetime-function","category-oracle-sql","tag-ai-assisted"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle SYSTIMESTAMP function &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server&#039;s high-precision date, time, and time zone.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vinish.dev\/oracle-systimestamp-function\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle SYSTIMESTAMP function &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server&#039;s high-precision date, time, and time zone.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-systimestamp-function\" \/>\n<meta property=\"og:site_name\" content=\"Vinish.Dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/foxinfotech2014\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-07T02:55:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-07T02:55:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"693\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vinish Kapoor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/vinish_kapoor\" \/>\n<meta name=\"twitter:site\" content=\"@foxinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vinish Kapoor\" \/>\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:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Oracle SYSTIMESTAMP Function: A Simple Guide\",\"datePublished\":\"2025-11-07T02:55:54+00:00\",\"dateModified\":\"2025-11-07T02:55:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function\"},\"wordCount\":321,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"keywords\":[\"AI-Assisted\"],\"articleSection\":[\"Datetime Function\",\"Oracle SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function\",\"name\":\"Oracle SYSTIMESTAMP function &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"datePublished\":\"2025-11-07T02:55:54+00:00\",\"dateModified\":\"2025-11-07T02:55:55+00:00\",\"description\":\"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server's high-precision date, time, and time zone.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-systimestamp-function#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle SQL\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Datetime Function\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\\\/datetime-function\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Oracle SYSTIMESTAMP Function: A Simple Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\",\"url\":\"https:\\\/\\\/vinish.dev\\\/\",\"name\":\"Vinish.Dev\",\"description\":\"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vinish.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"width\":192,\"height\":192,\"caption\":\"Vinish Kapoor\"},\"logo\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.facebook.com\\\/foxinfotech2014\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/foxinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"caption\":\"Vinish Kapoor\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/vinish_kapoor\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle SYSTIMESTAMP function &#8226; Vinish.Dev","description":"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server's high-precision date, time, and time zone.","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:\/\/vinish.dev\/oracle-systimestamp-function","og_locale":"en_US","og_type":"article","og_title":"Oracle SYSTIMESTAMP function &#8226; Vinish.Dev","og_description":"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server's high-precision date, time, and time zone.","og_url":"https:\/\/vinish.dev\/oracle-systimestamp-function","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2025-11-07T02:55:54+00:00","article_modified_time":"2025-11-07T02:55:55+00:00","og_image":[{"width":1200,"height":693,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png","type":"image\/png"}],"author":"Vinish Kapoor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/vinish_kapoor","twitter_site":"@foxinfotech","twitter_misc":{"Written by":"Vinish Kapoor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/oracle-systimestamp-function#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-systimestamp-function"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Oracle SYSTIMESTAMP Function: A Simple Guide","datePublished":"2025-11-07T02:55:54+00:00","dateModified":"2025-11-07T02:55:55+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-systimestamp-function"},"wordCount":321,"commentCount":0,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"keywords":["AI-Assisted"],"articleSection":["Datetime Function","Oracle SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-systimestamp-function#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-systimestamp-function","url":"https:\/\/vinish.dev\/oracle-systimestamp-function","name":"Oracle SYSTIMESTAMP function &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"datePublished":"2025-11-07T02:55:54+00:00","dateModified":"2025-11-07T02:55:55+00:00","description":"Learn the Oracle SYSTIMESTAMP function. This simple SQL guide explains how to get the server's high-precision date, time, and time zone.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-systimestamp-function#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-systimestamp-function"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-systimestamp-function#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle SQL","item":"https:\/\/vinish.dev\/category\/oracle-sql"},{"@type":"ListItem","position":3,"name":"Datetime Function","item":"https:\/\/vinish.dev\/category\/oracle-sql\/datetime-function"},{"@type":"ListItem","position":4,"name":"Oracle SYSTIMESTAMP Function: A Simple Guide"}]},{"@type":"WebSite","@id":"https:\/\/vinish.dev\/#website","url":"https:\/\/vinish.dev\/","name":"Vinish.Dev","description":"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers","publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vinish.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","width":192,"height":192,"caption":"Vinish Kapoor"},"logo":{"@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.facebook.com\/foxinfotech2014","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/foxinfotech"]},{"@type":"Person","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","caption":"Vinish Kapoor"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/https:\/\/x.com\/vinish_kapoor"]}]}},"_links":{"self":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20594","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/comments?post=20594"}],"version-history":[{"count":1,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20594\/revisions"}],"predecessor-version":[{"id":20595,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20594\/revisions\/20595"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=20594"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=20594"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=20594"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}