{"id":1740,"date":"2025-09-17T12:48:29","date_gmt":"2025-09-17T12:48:29","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1740"},"modified":"2025-09-17T12:48:29","modified_gmt":"2025-09-17T12:48:29","slug":"how-to-use-verge-blockbook-with-nownodes-a-simple-guide","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/","title":{"rendered":"How to Use Verge Blockbook with NOWNodes: A Simple Guide"},"content":{"rendered":"\n<p>If you\u2019ve ever built on blockchain, you know how important it is to have reliable access to on-chain data. Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-blockbook\"><strong>What is Blockbook?<\/strong><\/h2>\n\n\n<p>Blockbook is an open-source blockchain indexer that sits on top of a full node. In simple terms, it\u2019s like a super-powered search engine for the blockchain. Instead of scanning the entire Verge ledger manually, Blockbook provides fast API endpoints that let you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>check the balance of any address,<br><\/li>\n\n\n\n<li>fetch transaction details,<br><\/li>\n\n\n\n<li>explore blocks by height or hash,<br><\/li>\n\n\n\n<li>and even push raw transactions into the network.<br><\/li>\n<\/ul>\n\n\n\n<p>NOWNodes hosts Blockbook for Verge and other chains, so you don\u2019t need to set up or maintain a heavy server yourself. That means less time worrying about infrastructure and more time building your app.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"getting-started-with-nownodes\"><strong>Getting Started with NOWNodes<\/strong><\/h2>\n\n\n<p>To use <a href=\"https:\/\/nownodes.io\/nodes\/verge-xvg\">Verge Blockbook<\/a>, you\u2019ll first need access to NOWNodes. Here\u2019s how:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/account.nownodes.io\/auth\/login\">Sign up on NOWNodes<\/a><br><\/strong>Go to nownodes.io and choose a plan which suits you.<br><\/li>\n\n\n\n<li><strong>Generate your API key<\/strong><strong><br><\/strong>Once you\u2019re registered, you\u2019ll get an API key \u2014 a unique string that authorizes your requests. Think of it as your personal pass to the NOWNodes infrastructure.<br><\/li>\n\n\n\n<li><strong>Keep it safe<\/strong><strong><br><\/strong>Don\u2019t share your key publicly. If someone else uses it, their requests will count toward your quota. Store it in environment variables, not inside your GitHub repo.<br><\/li>\n<\/ol>\n\n\n\n<p>That\u2019s it. You\u2019re ready to start making API calls.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"example-checking-a-verge-address-information\"><strong>Example: Checking a Verge Address Information<\/strong><\/h2>\n\n\n<p>Let\u2019s look at just one method to see how it works in practice: fetching the balance, balance, total received and sent, unconfirmed transactions and more of a Verge address.<\/p>\n\n\n\n<p>With Blockbook, you can do this in a single HTTP request. Here\u2019s what it looks like:<\/p>\n\n\n\n<p><code>GET \/api\/v2\/address\/{address} HTTP\/1.1<\/code><\/p>\n\n\n\n<p><code>Host: xvg-blockbook.nownodes.io<\/code><\/p>\n\n\n\n<p><code>api-key: YOUR_API_KEY<\/code><\/p>\n\n\n\n<p><code>Accept: *\/*<\/code><\/p>\n\n\n\n<p>What you\u2019ll get back is a JSON response with:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>the total balance,<br><\/li>\n\n\n\n<li>how much has been received,<br><\/li>\n\n\n\n<li>how much was sent,<br><\/li>\n\n\n\n<li>and a list of recent transactions (if you request details).<br><\/li>\n<\/ul>\n\n\n\n<p>Here\u2019s an example of the response:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"page\": 1,\n    \"totalPages\": 1,\n    \"itemsOnPage\": 100,\n    \"address\": \"DJUJgi3rB2FXeXC5wpeBSXa4fwr25NQWzo\",\n    \"balance\": \"570644338255149800\",\n    \"totalReceived\": \"1049780097899349800\",\n    \"totalSent\": \"479135759644200000\",\n    \"unconfirmedBalance\": \"0\",\n    \"unconfirmedTxs\": 0,\n    \"txs\": 54,\n    \"txids\": &#91;\n        \"093b63611ef26437885eebff1a55c68a8941207bc6c8e3324599c9680c52ff86\",\n        \"935692531b63f6dda10b90fd8eeaab6e5a68c3a0dfdf8fe09d5b2cb113a7f5aa\",\n        \"06b5445b236ebbfeea2016ece7d250454596c5f9473628d0b5f2d76fa07f0f56\",\n        \"048617ab99816398361cec9cb6b02f7cc5a28dccbee9c4104b68535ac00c6bb1\",\n        \"ff38151e3eefc4e04890b77552429b1a801ebbe3674254baba8f505be0955407\",\n        \"b0ca0495713de45d489c2fcd6727e16fb455a4bad6430011c52b53fc904929e5\"\n    ]\n}\n<\/code><\/pre>\n\n\n\n<p>This is incredibly useful for wallets, explorers, or any service that needs to show live account data to users. Instead of waiting for confirmations or parsing the chain yourself, Blockbook gives you instant answers.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-it-matters\"><strong>Why It Matters<\/strong><\/h2>\n\n\n<p>Imagine you\u2019re building a Verge payment gateway. Every time a customer sends XVG, you need to check if their transaction arrived. With Blockbook, you don\u2019t need to run a Verge node or worry about uptime. Just call the API, and the information is there.<\/p>\n\n\n\n<p>This kind of lightweight integration is the reason so many developers rely on NOWNodes: it speeds up development, keeps costs low, and removes the hassle of node management.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"final-thoughts\"><strong>Final Thoughts<\/strong><\/h2>\n\n\n<p>Blockbook is more than just an API \u2014 it\u2019s the bridge between the Verge blockchain and your application. With <a href=\"https:\/\/nownodes.io\/\">NOWNodes<\/a>, you don\u2019t have to run a full node to get powerful blockchain insights. With nothing more than an API key and a few lines of code, you can start exploring Verge data today.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019ve ever built on blockchain, you know how important it is to have reliable access to on-chain data. Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in. What is Blockbook? Blockbook is an open-source blockchain indexer that [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1741,"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":[102],"tags":[203,123,39,427,428],"class_list":["post-1740","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dev-report","tag-api","tag-rpc-nodes","tag-tutorial","tag-verge","tag-xvg"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Use Verge Blockbook with NOWNodes: A Simple Guide<\/title>\n<meta name=\"description\" content=\"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.\" \/>\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\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Verge Blockbook with NOWNodes: A Simple Guide\" \/>\n<meta property=\"og:description\" content=\"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-17T12:48:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/09\/coin_14-14.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"\u0410nastasia\" \/>\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=\"\u0410nastasia\" \/>\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\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"How to Use Verge Blockbook with NOWNodes: A Simple Guide\",\"datePublished\":\"2025-09-17T12:48:29+00:00\",\"dateModified\":\"2025-09-17T12:48:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\"},\"wordCount\":526,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"API\",\"RPC Nodes\",\"Tutorial\",\"Verge\",\"XVG\"],\"articleSection\":[\"Dev Report\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\",\"url\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\",\"name\":\"How to Use Verge Blockbook with NOWNodes: A Simple Guide\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-09-17T12:48:29+00:00\",\"dateModified\":\"2025-09-17T12:48:29+00:00\",\"description\":\"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/nownodes.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dev Report\",\"item\":\"https:\/\/nownodes.io\/blog\/category\/dev-report\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use Verge Blockbook with NOWNodes: A Simple Guide\"}]},{\"@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\/0890ec68e813adecb93c18ee00e1e7a8\",\"name\":\"\u0410nastasia\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g\",\"caption\":\"\u0410nastasia\"},\"url\":\"https:\/\/nownodes.io\/blog\/author\/nasty-nownodes\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Verge Blockbook with NOWNodes: A Simple Guide","description":"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.","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\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Verge Blockbook with NOWNodes: A Simple Guide","og_description":"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.","og_url":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-09-17T12:48:29+00:00","og_image":[{"width":2400,"height":1200,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/09\/coin_14-14.jpg","type":"image\/jpeg"}],"author":"\u0410nastasia","twitter_card":"summary_large_image","twitter_creator":"@nownodes","twitter_site":"@nownodes","twitter_misc":{"Written by":"\u0410nastasia","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"How to Use Verge Blockbook with NOWNodes: A Simple Guide","datePublished":"2025-09-17T12:48:29+00:00","dateModified":"2025-09-17T12:48:29+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/"},"wordCount":526,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["API","RPC Nodes","Tutorial","Verge","XVG"],"articleSection":["Dev Report"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/","url":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/","name":"How to Use Verge Blockbook with NOWNodes: A Simple Guide","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-09-17T12:48:29+00:00","dateModified":"2025-09-17T12:48:29+00:00","description":"Verge (XVG) is no exception. Developers need quick ways to check balances, look up transactions, or broadcast new ones \u2014 and that\u2019s where Blockbook comes in.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/how-to-use-verge-blockbook-with-nownodes-a-simple-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/nownodes.io\/blog"},{"@type":"ListItem","position":2,"name":"Dev Report","item":"https:\/\/nownodes.io\/blog\/category\/dev-report"},{"@type":"ListItem","position":3,"name":"How to Use Verge Blockbook with NOWNodes: A Simple Guide"}]},{"@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\/0890ec68e813adecb93c18ee00e1e7a8","name":"\u0410nastasia","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1de24ab8dcdd7ec30f6adaf78b56bc1eda421f87575b7e103c8fc3fc4420e833?s=96&d=mm&r=g","caption":"\u0410nastasia"},"url":"https:\/\/nownodes.io\/blog\/author\/nasty-nownodes"}]}},"modified_by":"\u0410nastasia","_links":{"self":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1740","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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/comments?post=1740"}],"version-history":[{"count":2,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1740\/revisions"}],"predecessor-version":[{"id":1751,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1740\/revisions\/1751"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1741"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1740"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1740"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1740"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}