{"id":1604,"date":"2025-08-06T10:35:37","date_gmt":"2025-08-06T10:35:37","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1604"},"modified":"2025-08-06T10:35:38","modified_gmt":"2025-08-06T10:35:38","slug":"public-ethereum-rpc-endpoints-complete-guide","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/","title":{"rendered":"Public Ethereum RPC Endpoints: Complete guide"},"content":{"rendered":"\n<p>If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints. These endpoints are essential for interacting with the Ethereum network, yet many developers overlook their limitations and security concerns. In this article, we\u2019ll break down what they are, how they work, and when you should (or shouldn\u2019t) use them.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"what-are-public-ethereum-rpc-endpoints\"><strong>What Are Public Ethereum RPC Endpoints?<\/strong><\/h3>\n\n\n<p>Ethereum nodes expose an API called JSON-RPC that allows applications to communicate with the blockchain. This is how wallets, explorers, and dApps query data (like balances, transactions, and block info) or send transactions.<\/p>\n\n\n\n<p>A public Ethereum RPC endpoint is simply an RPC interface hosted by <a href=\"https:\/\/nownodes.io\/public-endpoints\">NOWNodes<\/a> and made publicly accessible to anyone\u2014often for free.<\/p>\n\n\n\n<p>These services save developers from running their own Ethereum node, which can be expensive and resource-heavy.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"how-public-ethereum-rpc-endpoints-work\"><strong>How Public Ethereum RPC Endpoints Work<\/strong><\/h3>\n\n\n<p>When you make a request to a public RPC endpoint, your application sends JSON-RPC calls like (for the methods you can use our <a href=\"https:\/\/nownodes.gitbook.io\/documentation\/eth-ethereum\/mainnet\">documentation<\/a>):<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>{<br>  \"jsonrpc\": \"2.0\",<br>  \"method\": \"eth_blockNumber\",<br>  \"params\": [],<br>  \"id\": 1<br>}<br><\/code><\/pre>\n\n\n\n<p>The RPC provider responds with data directly from the blockchain network. This makes it possible to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Fetch account balances (<code>eth_getBalance<\/code>)<\/li>\n\n\n\n<li>Read smart contract data (<code>eth_call<\/code>)<\/li>\n\n\n\n<li>Send transactions (<code>eth_sendRawTransaction<\/code>)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"pros-and-cons-of-public-ethereum-rpc-endpoints\"><strong>Pros and Cons of Public Ethereum RPC Endpoints<\/strong><\/h3>\n\n\n<p><strong>Pros:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Free or Low-Cost:<\/strong> Great for testing and small-scale projects.<\/li>\n\n\n\n<li><strong>Zero Maintenance:<\/strong> No need to run your own node.<\/li>\n\n\n\n<li><strong>Quick Setup:<\/strong> Just plug in the URL and start building.<\/li>\n<\/ul>\n\n\n\n<p><strong>Cons:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Rate Limits:<\/strong> Most public endpoints limit requests per second.<\/li>\n\n\n\n<li><strong>Shared Resources:<\/strong> Higher latency due to shared infrastructure.<\/li>\n\n\n\n<li><strong>Security Risks:<\/strong> Exposing API keys or using untrusted endpoints can lead to exploits.<\/li>\n\n\n\n<li><strong>Not Always Reliable:<\/strong> Downtime or throttling can break your app.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"when-should-you-use-public-endpoints\"><strong>When Should You Use Public Endpoints?<\/strong><\/h3>\n\n\n<p>Public endpoints are perfect for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Hackathons &amp; Prototypes<\/strong><\/li>\n\n\n\n<li><strong>Learning and Testing<\/strong><\/li>\n\n\n\n<li><strong>Small Projects with Low Traffic<\/strong><\/li>\n<\/ul>\n\n\n\n<p>For <strong>production-level dApps<\/strong>, especially those handling sensitive transactions, a <strong>dedicated RPC node or private endpoint<\/strong> is a better choice. This ensures reliability, performance, and security.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"best-practices-for-using-public-rpc-endpoints\"><strong>Best Practices for Using Public RPC Endpoints<\/strong><\/h3>\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Avoid Hardcoding Keys<\/strong> \u2013 Use environment variables.<\/li>\n\n\n\n<li><strong>Implement Fallbacks<\/strong> \u2013 Have multiple RPC endpoints to reduce downtime.<\/li>\n\n\n\n<li><strong>Monitor Usage<\/strong> \u2013 Stay within rate limits to avoid service disruption.<\/li>\n\n\n\n<li><strong>Don\u2019t Trust Random RPC URLs<\/strong> \u2013 Use reputable providers to prevent data tampering.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h3>\n\n\n<p>Public Ethereum RPC endpoints are an excellent starting point for developers who want quick access to Ethereum without running a full node. However, as your application grows, consider moving to <strong>private RPC endpoints<\/strong> or running your own infrastructure for better performance and security.<\/p>\n\n\n\n<p>Looking for fast and reliable Ethereum RPC access? Check out our <a href=\"https:\/\/nownodes.io\/public-endpoints\">Public Endpoints<\/a> and get started with free and premium options.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints. These endpoints are essential for interacting with the Ethereum network, yet many developers overlook their limitations and security concerns. In this article, we\u2019ll break down what they are, how they work, and when you [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1605,"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":[59,7],"tags":[203,90,123],"class_list":["post-1604","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ethereum","category-node-guides","tag-api","tag-ethereum","tag-rpc-nodes"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Public Ethereum RPC Endpoints: Complete guide<\/title>\n<meta name=\"description\" content=\"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.\" \/>\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\/public-ethereum-rpc-endpoints-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Public Ethereum RPC Endpoints: Complete guide\" \/>\n<meta property=\"og:description\" content=\"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-06T10:35:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-06T10:35:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/08\/coin_3-8.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\/public-ethereum-rpc-endpoints-complete-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"Public Ethereum RPC Endpoints: Complete guide\",\"datePublished\":\"2025-08-06T10:35:37+00:00\",\"dateModified\":\"2025-08-06T10:35:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\"},\"wordCount\":437,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"API\",\"Ethereum\",\"RPC Nodes\"],\"articleSection\":[\"Ethereum\",\"Node Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\",\"url\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\",\"name\":\"Public Ethereum RPC Endpoints: Complete guide\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-08-06T10:35:37+00:00\",\"dateModified\":\"2025-08-06T10:35:38+00:00\",\"description\":\"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#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\":\"Public Ethereum RPC Endpoints: Complete 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":"Public Ethereum RPC Endpoints: Complete guide","description":"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.","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\/public-ethereum-rpc-endpoints-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"Public Ethereum RPC Endpoints: Complete guide","og_description":"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.","og_url":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-08-06T10:35:37+00:00","article_modified_time":"2025-08-06T10:35:38+00:00","og_image":[{"width":2400,"height":1200,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/08\/coin_3-8.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\/public-ethereum-rpc-endpoints-complete-guide\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"Public Ethereum RPC Endpoints: Complete guide","datePublished":"2025-08-06T10:35:37+00:00","dateModified":"2025-08-06T10:35:38+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/"},"wordCount":437,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["API","Ethereum","RPC Nodes"],"articleSection":["Ethereum","Node Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/","url":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/","name":"Public Ethereum RPC Endpoints: Complete guide","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-08-06T10:35:37+00:00","dateModified":"2025-08-06T10:35:38+00:00","description":"If you\u2019re building a dApp, wallet, or any blockchain-based service on Ethereum, you\u2019ve probably encountered the term public Ethereum RPC endpoints.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/public-ethereum-rpc-endpoints-complete-guide\/#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":"Public Ethereum RPC Endpoints: Complete 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\/1604","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=1604"}],"version-history":[{"count":1,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1604\/revisions"}],"predecessor-version":[{"id":1606,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1604\/revisions\/1606"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1605"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1604"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1604"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1604"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}