{"id":1889,"date":"2025-12-02T11:13:33","date_gmt":"2025-12-02T11:13:33","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1889"},"modified":"2025-12-02T11:13:34","modified_gmt":"2025-12-02T11:13:34","slug":"archive-node-use-cases-in-blockchain-for-developers","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/","title":{"rendered":"Archive Node Use Cases in Blockchain for Developers"},"content":{"rendered":"\n<p>Anyone who works with, for example, the Ethereum blockchain long enough eventually bumps into a very specific wall: you need to know exactly what happened <em>back then<\/em>. Not just roughly, not just the transaction logs \u2014 you need the actual state of an account or smart contract at some old block height. And that\u2019s the moment most developers discover archive nodes.<\/p>\n\n\n\n<p>At first, they seem like something only deeply specialized infrastructure teams would care about. But once you understand what they unlock, it becomes hard to imagine serious blockchain development without them.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"how-node-types-actually-differ-and-how-node-works\">How Node Types Actually Differ and How Node Works<\/h2>\n\n\n<p>Ethereum runs on a global network of machines that sync new blocks, verify transactions, store blockchain data, and help everyone interact with the network. Light nodes store just enough to participate. Full nodes do the heavy lifting and keep the latest state, along with just enough history to regenerate the most recent 128 blocks.<\/p>\n\n\n\n<p>And then there are archive nodes \u2014 the memory-keepers of the entire chain. They store <em>everything<\/em>: every block, every state, every change, from the first block ever created. If a full node is like a camera that saves only the last few photos, an archive node is the entire photo library going back years, with every deleted shot and every version ever saved.<\/p>\n\n\n\n<p>Full nodes are great for everyday tasks, but the moment you try to query something from deep in the past, they hit a hard limit. They simply weren\u2019t designed to store that much data.<\/p>\n\n\n\n<p>Archive nodes, on the other hand, preserve the entire evolution of the blockchain. They hold the entire trie, every intermediate state, and every detail the network has ever processed. That&#8217;s why they matter.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-developers-need-an-archive-node\">Why Developers Need an Archive Node<\/h2>\n\n\n<p>Usually it starts with something simple. You\u2019re debugging a contract and need to know what a storage slot looked like 2 million blocks ago. Or you&#8217;re building an analytics dashboard and your data pipeline quietly assumes you can access historical state. Or your team is investigating an exploit, and someone asks, \u201cWhat did the attacker\u2019s balance look like before the event?\u201d<\/p>\n\n\n\n<p>Suddenly, the need for historical precision becomes very real.<\/p>\n\n\n\n<p>An archive node is the only way to answer these questions without relying on third-party indexes or recreating the blockchain state manually. It can tell you any detail about any block, any contract, any account, at any point in time. And it does this instantly \u2014 because the data is already stored there, unpruned and untouched.<\/p>\n\n\n\n<p>Once you\u2019ve used one, it\u2019s hard to go back.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"the-client-software-behind-ethereum-archive-data\">The Client Software Behind Ethereum Archive Data<\/h2>\n\n\n<p>Different Ethereum clients handle archive mode differently, and it influences everything \u2014 the database size, the syncing speed, even how pleasant the experience is.<\/p>\n\n\n\n<p>Geth, written in Go, is the most common choice. It&#8217;s stable, well-tested, and predictable \u2014 but it tends to generate massive database sizes in archive mode.<\/p>\n\n\n\n<p>Erigon (also written in Go) is built with performance in mind. It&#8217;s a more modern take on how an Ethereum client should work, and its archive mode is far more storage-efficient. Many teams switch to Erigon specifically because it can handle archive data more gracefully.<\/p>\n\n\n\n<p>OpenEthereum is older and no longer maintained, but it\u2019s worth mentioning because it used to be the fastest way to sync.<\/p>\n\n\n\n<p>No matter the client, the job is the same: store the complete historical data of the chain and allow developers to query anything, anytime.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"the-reality-of-running-an-archive-node\">The Reality of Running an Archive Node<\/h2>\n\n\n<p>If running a node(for example an Ethereum full node) is like hosting your own website, running an archive node is closer to running your own datacenter. You need high-performance SSDs, terabytes of space, lots of RAM, a strong CPU, and a reliable network connection. And even with great hardware, syncing an archive node can take weeks.<\/p>\n\n\n\n<p>Unlike a full node, running an archive node requires a snapshot since a genesis block. It helps with synchronization every single block since genesis, verifies every transaction, and rebuilds the state at every step. It stores millions of versions of blockchain\u2019s trie, all of which grow continuously as the network evolves.<\/p>\n\n\n\n<p>And the blockchain isn&#8217;t getting smaller.<\/p>\n\n\n\n<p>This is why developers who try running an archive node on consumer hardware often give up halfway. It\u2019s not impossible \u2014 it just requires more time, storage, and patience than most teams can reasonably dedicate to store a full blockchain history.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"full-node-vs-archive-node-access-which-is-better\">Full node vs Archive Node Access: Which is better?<\/h2>\n\n\n<p>For many developers, the realization comes gradually: a full node is great \u2014 until it suddenly isn\u2019t. Full nodes are perfect for staying synced with the network, verifying new blocks, and interacting with smart contracts in real time. But the moment you need to look deeper into the past, they hit a hard limit. A full node simply doesn\u2019t store the historical state you\u2019re looking for.<\/p>\n\n\n\n<p>And that\u2019s where the real trade-off becomes clear. Running an archive node yourself is a massive undertaking. It demands terabytes of SSD storage, weeks of syncing, constant monitoring, and the kind of hardware you don\u2019t casually set up on a spare machine. Maintaining all of that 24\/7 quickly turns into a full-time job \u2014 one most teams never intended to have.<\/p>\n\n\n\n<p>So instead of pushing full nodes beyond what they\u2019re designed for, and instead of taking on the overhead of running an archive node, many developers choose a provider that gives them instant access to the data they actually need. Through a simple JSON-RPC or web3 endpoint, they can work with any historical state, any block, any account \u2014 without hosting anything themselves.<\/p>\n\n\n\n<p>For projects that need archive-level insight but were never meant to operate their own multi-terabyte infrastructure, relying on a provider becomes the far more practical (and frankly, much saner) choice.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-get-a-historical-information-with-nownodes-api\">How to get a historical information with NOWNodes API<\/h2>\n\n\n<p><a href=\"https:\/\/nownodes.io\/\">NOWNodes<\/a> as a node provider offers archive node access designed specifically for teams that want deep historical visibility without the headache of running their own machines. You can use archive nodes through shared access if your workload is moderate, or launch a dedicated archive node if you need maximum performance and privacy.<\/p>\n\n\n\n<p>NOWNodes offers:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Access to 45+ archive nodes via Shared nodes<\/li>\n\n\n\n<li>24\/7 support with 3 min SLA directly tech team<\/li>\n\n\n\n<li>Dedicated Archive nodes &#8211; <a href=\"sales@nownodes.io\">just request a node<\/a><\/li>\n\n\n\n<li>More details <a href=\"https:\/\/nownodes.io\/archive-nodes\">here<\/a><\/li>\n<\/ol>\n\n\n\n<p>The platform gives you a stable endpoint, quick responses, full historical data, reliable uptime, and no guesswork about hardware requirements, syncing, or maintenance \u2014 everything simply works out of the box.<\/p>\n\n\n\n<p>If your project needs a historical blockchain data, run analytics, debug smart contracts, or explore the earliest parts of the Ethereum chain, NOWNodes gives you immediate access to the full archive. It&#8217;s the simplest way to work with historical Ethereum data at scale, without maintaining a multi-terabyte infrastructure of your own.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Anyone who works with, for example, the Ethereum blockchain long enough eventually bumps into a very specific wall: you need to know exactly what happened back then. Not just roughly, not just the transaction logs \u2014 you need the actual state of an account or smart contract at some old block height. And that\u2019s the [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1890,"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,446,123,39],"class_list":["post-1889","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dev-report","tag-api","tag-archive-nodes","tag-rpc-nodes","tag-tutorial"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Archive Node: What it is and Why it Matters<\/title>\n<meta name=\"description\" content=\"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.\" \/>\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\/archive-node-use-cases-in-blockchain-for-developers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Archive Node: What it is and Why it Matters\" \/>\n<meta property=\"og:description\" content=\"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-02T11:13:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-02T11:13:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/12\/text_1-17-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"Archive Node Use Cases in Blockchain for Developers\",\"datePublished\":\"2025-12-02T11:13:33+00:00\",\"dateModified\":\"2025-12-02T11:13:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\"},\"wordCount\":1149,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"API\",\"Archive nodes\",\"RPC Nodes\",\"Tutorial\"],\"articleSection\":[\"Dev Report\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\",\"url\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\",\"name\":\"Archive Node: What it is and Why it Matters\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-12-02T11:13:33+00:00\",\"dateModified\":\"2025-12-02T11:13:34+00:00\",\"description\":\"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#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\":\"Archive Node Use Cases in Blockchain for Developers\"}]},{\"@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":"Archive Node: What it is and Why it Matters","description":"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.","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\/archive-node-use-cases-in-blockchain-for-developers\/","og_locale":"en_US","og_type":"article","og_title":"Archive Node: What it is and Why it Matters","og_description":"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.","og_url":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-12-02T11:13:33+00:00","article_modified_time":"2025-12-02T11:13:34+00:00","og_image":[{"width":2560,"height":1280,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/12\/text_1-17-scaled.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"Archive Node Use Cases in Blockchain for Developers","datePublished":"2025-12-02T11:13:33+00:00","dateModified":"2025-12-02T11:13:34+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/"},"wordCount":1149,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["API","Archive nodes","RPC Nodes","Tutorial"],"articleSection":["Dev Report"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/","url":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/","name":"Archive Node: What it is and Why it Matters","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-12-02T11:13:33+00:00","dateModified":"2025-12-02T11:13:34+00:00","description":"Archive node explained: Explore its role in storing complete blockchain data. Essential for analytics and historical insights.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/archive-node-use-cases-in-blockchain-for-developers\/#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":"Archive Node Use Cases in Blockchain for Developers"}]},{"@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\/1889","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=1889"}],"version-history":[{"count":1,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1889\/revisions"}],"predecessor-version":[{"id":1891,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1889\/revisions\/1891"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1890"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1889"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1889"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}