{"id":634,"date":"2024-05-22T12:33:09","date_gmt":"2024-05-22T12:33:09","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=634"},"modified":"2025-03-04T11:53:08","modified_gmt":"2025-03-04T11:53:08","slug":"monero-how-to-check-balance","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/","title":{"rendered":"Monero (XMR): How to Check Balance"},"content":{"rendered":"\n<div class=\"wp-block-ideabox-toc ib-block-toc\" data-anchors='h2,h5' data-exclude='.related-posts, #related-posts-container' data-collapsable='true' ><div class=\"ib-toc-container ib-toc-list-style-numbers ib-toc-hierarchical ib-toc-expanded\"><div class=\"ib-toc-header\" style=\"font-size:25px;background-color:#431354;color:#fefefe;--fill:#fefefe\"><div class=\"ib-toc-header-title\">Table of Contents<\/div><div class=\"ib-toc-header-right\"><span class=\"ib-toc-icon-collapse\"><span class=\"dashicon dashicons dashicons-minus\"><\/span><\/span><span class=\"ib-toc-icon-expand\"><span class=\"dashicon dashicons dashicons-plus\"><\/span><\/span><\/div><\/div><div class=\"ib-toc-separator\" style=\"height:2px\"><\/div><div class=\"ib-toc-body\"><ol class=\"ib-toc-anchors\"><\/ol><\/div><\/div><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n<p>Monero is a privacy-by-design cryptocurrency utilizing the CryptoNote protocol, developed by the anonymous Nicolas van Saberhagen. It stands out in the cryptocurrency world for its robust privacy features, ensuring transactions remain confidential and untraceable.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"a-toplevel-view-on-monero\"><strong>A Top-Level View on Monero<\/strong><\/h2>\n\n\n<p>To stay privacy-centric, Monero makes use of various cryptographic primitives: ring signatures, stealth addresses, Pedersen commitments, and more. Working together, they empower the protocol with two distinctive features:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Untraceability:<\/strong> for every incoming transaction, all possible senders are equally likely.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Unlinkability means that no one can prove that two outgoing transactions were sent to the same person.<\/li>\n<\/ul>\n\n\n\n<p>Practically, this means two things: the transacting parties remain anonymous, and the general public cannot see transaction details or wallet balances. As an outstanding feature in the cryptocurrency world, it introduces some difficulties. One of these difficulties relates to the concept of the Monero Block Explorer, where anyone looking at the block explorer with only the Monero address cannot view transaction details.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"moneros-dual-key-system\"><strong><strong>Monero\u2019s Dual Key System<\/strong><\/strong><\/h2>\n\n\n<p>The thins is that Monero has two sets of keys: view keys and spend keys.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Public View and Public Spend keys<\/strong><\/li>\n<\/ul>\n\n\n\n<p>These keys are generated in each Monero public address. They are public required to send and receive XMR on the Monero network.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Private View and Private Spend keys<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Private Spend keys function like any other private key in cryptocurrency and you should not share them with anyone. These keys give you control over your funds and you should treat them with the utmost care.<\/p>\n\n\n\n<p>To be precise, Private View keys serve an additional function. Monero\u2019s blockchain is to be private-by-design, but can optionally be transparent. This is where the Private View key plays a role, as sharing it along with your address can display all incoming transactions to this address.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"checking-balance-with-nownodes\"><strong>Checking balance with NOWNodes<\/strong><\/h2>\n\n\n<p>Here is a step by step guide, that can be used right away in <a href=\"https:\/\/nownodes.gitbook.io\/documentation\/nodeapis\/xmr-monero\">Documentation<\/a> for a&nbsp;<a href=\"https:\/\/nownodes.io\/nodes\/monero-xmr\" target=\"_blank\" rel=\"noreferrer noopener\">Monero remote node<\/a>.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Account Creation<\/strong>: Execute <code>xmr.nownodes.io\/xmr\/account<\/code> with your API key and address.<\/li>\n\n\n\n<li><strong>Resynchronization<\/strong>: Use <code>xmr.nownodes.io\/xmr\/resync<\/code> to update your account with recent transactions.<\/li>\n\n\n\n<li><strong>Balance Check<\/strong>: Check your balance using <code>xmr.nownodes.io\/xmr\/balance\/<\/code> with your API key, address, and view key.<\/li>\n<\/ol>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-palette-color-7-color has-vivid-purple-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https:\/\/nownodes.io\/pricing\" target=\"_blank\" rel=\"noreferrer noopener\">Get your personal API key<\/a><\/div>\n<\/div>\n\n\n\n<p><strong>First<\/strong>, you need to execute&nbsp;<strong>xmr.nownodes.io\/xmr\/account<\/strong><\/p>\n\n\n\n<p>The request body is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n\"API_key\": \"your_API_key\",\n  \"address\": \"your_address\"\n}<\/code><\/pre>\n\n\n\n<p>Using ZwmbBjvevr4JeRgeATb7Y3Ad as API key (hereinafter), you get:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\": \"5efe03e5d56367002093e1a2\",\n    \"address\": \"your_address\",\n    \"isCreated\": false,\n    \"isResynced\": false,\n    \"createdAt\": 1593705445,\n    \"resyncedAt\": 0\n}<\/code><\/pre>\n\n\n\n<p>Second, make a resynchronization&nbsp;<strong>xmr.nownodes.io\/xmr\/resync<\/strong><\/p>\n\n\n\n<p>In case you use an old address, this endpoint help to look through the last 10,000 blocks.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"API_key\": \"your_API_key\",\n  \"address\": \"your_address\",\n  \"viewKey\": \"your_viewKey\"\n}<\/code><\/pre>\n\n\n\n<p>And you get:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"request_fulfilled\": true,\n    \"status\": \"Updating account with for importing recent txs successeful.\"\n}<\/code><\/pre>\n\n\n\n<p>Third, check your balance&nbsp;<strong>xmr.nownodes.io\/xmr\/balance<\/strong>\/<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"API_key\": \"your_API_key\",\n  \"address\": \"your_address\",\n  \"viewKey\": \"your_viewKey\"\n}<\/code><\/pre>\n\n\n\n<p>And you get:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"blockchain_height\": 2133546,\n    \"locked_funds\": \"0\",\n    \"new_address\": false,\n    \"scanned_block_height\": 2133546,\n    \"scanned_block_timestamp\": 1593700334,\n    \"scanned_height\": 0,\n    \"spent_outputs\": &#91;],\n    \"start_height\": 2133543,\n    \"status\": \"success\",\n    \"total_received\": \"0\",\n    \"total_sent\": \"0\"\n}<\/code><\/pre>\n\n\n\n<p>And so here you are.&nbsp;<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2>\n\n\n<p>Monero offers unparalleled privacy features in the cryptocurrency world. While it presents some unique challenges, tools like NOWNodes make it accessible and user-friendly. As the demand for privacy grows, Monero\u2019s role in the digital currency landscape is likely to expand.<\/p>\n\n\n\n<p><strong>Additional Resources<\/strong> For more information, visit the <a href=\"https:\/\/www.getmonero.org\/\">official Monero website<\/a> and check out the <a href=\"https:\/\/www.reddit.com\/r\/Monero\/\">Monero community on Reddit<\/a>.<\/p>\n\n\n\n<p>By addressing these points, the article will provide a more comprehensive and engaging overview of Monero.<\/p>\n\n\n\n<p>NOWNodes is a modern user-friendly platform from the creators of ChangeNOW that offers secure access to full nodes of various cryptocurrencies, including Monero. Besides, we provide access to block explorers, including Monero explorer, and have a free plan for up to 20,000 requests per day \u2014 that makes us a unique and trusted partner.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-palette-color-7-color has-vivid-purple-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https:\/\/nownodes.io\/pricing\" target=\"_blank\" rel=\"noreferrer noopener\">Get your personal API key<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Monero is a privacy-by-design cryptocurrency utilizing the CryptoNote protocol, developed by the anonymous Nicolas van Saberhagen. It stands out in the cryptocurrency world for its robust privacy features, ensuring transactions remain confidential and untraceable. A Top-Level View on Monero To stay privacy-centric, Monero makes use of various cryptographic primitives: ring signatures, stealth addresses, Pedersen [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":639,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","_lmt_disableupdate":"","_lmt_disable":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[166,7,34],"tags":[40,162,39,163],"class_list":["post-634","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-monero","category-node-guides","category-wallet-guides","tag-mainnet","tag-monero","tag-tutorial","tag-xmr"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Monero (XMR): How to Check Balance<\/title>\n<meta name=\"description\" content=\"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nownodes.io\/blog\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monero (XMR): How to Check Balance\" \/>\n<meta property=\"og:description\" content=\"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-22T12:33:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-04T11:53:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/05\/Full-Node-Wallet-vs-Light-Wallet-2-min-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"NOWNodes Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@nownodes\" \/>\n<meta name=\"twitter:site\" content=\"@nownodes\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"NOWNodes Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/nownodes.io\/blog#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/\"},\"author\":{\"name\":\"NOWNodes Team\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/c041891469390738b68a2aafe063f93c\"},\"headline\":\"Monero (XMR): How to Check Balance\",\"datePublished\":\"2024-05-22T12:33:09+00:00\",\"dateModified\":\"2025-03-04T11:53:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/\"},\"wordCount\":573,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"Mainnet\",\"Monero\",\"Tutorial\",\"XMR\"],\"articleSection\":[\"Monero\",\"Node Guides\",\"Wallet Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/\",\"url\":\"https:\/\/nownodes.io\/blog\",\"name\":\"Monero (XMR): How to Check Balance\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2024-05-22T12:33:09+00:00\",\"dateModified\":\"2025-03-04T11:53:08+00:00\",\"description\":\"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/nownodes.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Node Guides\",\"item\":\"https:\/\/nownodes.io\/blog\/category\/node-guides\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Monero (XMR): How to Check Balance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/nownodes.io\/blog\/#website\",\"url\":\"https:\/\/nownodes.io\/blog\/\",\"name\":\"NOWNodes Blog\",\"description\":\"Your first-to-go source of development guides, web3 analytics and most recent news about NOWNodes\",\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/nownodes.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\",\"name\":\"NOWNodes Blog\",\"url\":\"https:\/\/nownodes.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png\",\"contentUrl\":\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png\",\"width\":1164,\"height\":1164,\"caption\":\"NOWNodes Blog\"},\"image\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/twitter.com\/nownodes\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/c041891469390738b68a2aafe063f93c\",\"name\":\"NOWNodes Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084e45aa2f2bfa61b9ce9f41af97a74f38e87c065b0d49f23a1bb84727320c2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084e45aa2f2bfa61b9ce9f41af97a74f38e87c065b0d49f23a1bb84727320c2e?s=96&d=mm&r=g\",\"caption\":\"NOWNodes Team\"},\"sameAs\":[\"http:\/\/65.108.139.113\"],\"url\":\"https:\/\/nownodes.io\/blog\/author\/nownodes\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monero (XMR): How to Check Balance","description":"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.","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:\/\/nownodes.io\/blog\/","og_locale":"en_US","og_type":"article","og_title":"Monero (XMR): How to Check Balance","og_description":"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.","og_url":"https:\/\/nownodes.io\/blog\/","og_site_name":"NOWNodes Blog","article_published_time":"2024-05-22T12:33:09+00:00","article_modified_time":"2025-03-04T11:53:08+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/05\/Full-Node-Wallet-vs-Light-Wallet-2-min-scaled.jpg","type":"image\/jpeg"}],"author":"NOWNodes Team","twitter_card":"summary_large_image","twitter_creator":"@nownodes","twitter_site":"@nownodes","twitter_misc":{"Written by":"NOWNodes Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nownodes.io\/blog#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/"},"author":{"name":"NOWNodes Team","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/c041891469390738b68a2aafe063f93c"},"headline":"Monero (XMR): How to Check Balance","datePublished":"2024-05-22T12:33:09+00:00","dateModified":"2025-03-04T11:53:08+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/"},"wordCount":573,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["Mainnet","Monero","Tutorial","XMR"],"articleSection":["Monero","Node Guides","Wallet Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/monero-xmr-how-to-check-balance\/","url":"https:\/\/nownodes.io\/blog","name":"Monero (XMR): How to Check Balance","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2024-05-22T12:33:09+00:00","dateModified":"2025-03-04T11:53:08+00:00","description":"Here is a step by step guide, that can be used right away for a\u00a0Monero (XMR): How to Check Balance \/ remote node.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/nownodes.io\/blog"},{"@type":"ListItem","position":2,"name":"Node Guides","item":"https:\/\/nownodes.io\/blog\/category\/node-guides"},{"@type":"ListItem","position":3,"name":"Monero (XMR): How to Check Balance"}]},{"@type":"WebSite","@id":"https:\/\/nownodes.io\/blog\/#website","url":"https:\/\/nownodes.io\/blog\/","name":"NOWNodes Blog","description":"Your first-to-go source of development guides, web3 analytics and most recent news about NOWNodes","publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nownodes.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/nownodes.io\/blog\/#organization","name":"NOWNodes Blog","url":"https:\/\/nownodes.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png","contentUrl":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2024\/02\/cropped-New-Logo-NN.png","width":1164,"height":1164,"caption":"NOWNodes Blog"},"image":{"@id":"https:\/\/nownodes.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/twitter.com\/nownodes"]},{"@type":"Person","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/c041891469390738b68a2aafe063f93c","name":"NOWNodes Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084e45aa2f2bfa61b9ce9f41af97a74f38e87c065b0d49f23a1bb84727320c2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084e45aa2f2bfa61b9ce9f41af97a74f38e87c065b0d49f23a1bb84727320c2e?s=96&d=mm&r=g","caption":"NOWNodes Team"},"sameAs":["http:\/\/65.108.139.113"],"url":"https:\/\/nownodes.io\/blog\/author\/nownodes"}]}},"modified_by":"\u0410nastasia","_links":{"self":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/634","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/comments?post=634"}],"version-history":[{"count":4,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/634\/revisions"}],"predecessor-version":[{"id":1114,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/634\/revisions\/1114"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/639"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}