{"id":1285,"date":"2025-04-15T10:46:44","date_gmt":"2025-04-15T10:46:44","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1285"},"modified":"2025-04-15T10:46:44","modified_gmt":"2025-04-15T10:46:44","slug":"how-to-track-issued-tokens-on-xrp-using-gateway-balance","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/","title":{"rendered":"How to Track Issued Tokens on XRP using Gateway Balance"},"content":{"rendered":"\n<p>Track issued tokens on the <a href=\"https:\/\/nownodes.io\/nodes\/ripple-xrp\">XRP Ledger<\/a> &#8211; one of the most important tasks for developers and financial operators is understanding how much of an asset has been issued and who currently holds it. This is particularly relevant for gateways, stablecoin issuers, and institutional players utilizing the XRP Ledger for tokenized assets. In this guide, we will explore how to use the <code>gateway_balances<\/code> method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL node, thanks to the infrastructure provided by NOWNodes.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-gatewaybalance\">What is gateway_balance?<\/h2>\n\n\n<p>The <code>gateway_balances<\/code> method is an XRP Ledger API call that returns the total balances of issued tokens for a specified account. Specifically, it helps you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Calculate total outstanding obligations (issued assets)<\/li>\n\n\n\n<li>Identify holders of your tokens (excluding your own operational wallets)<\/li>\n\n\n\n<li>Detect frozen token balances<\/li>\n\n\n\n<li>Work with validated ledger data for consistency<\/li>\n<\/ul>\n\n\n\n<p>This method is particularly useful for auditing, compliance, monitoring liquidity, and building analytics dashboards for tokenized assets.<\/p>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-use-nownodes-to-track-issued-tokens\">Why Use NOWNodes to track issued tokens?<\/h2>\n\n\n<p>Operating your own XRP node requires significant technical resources, ongoing maintenance, and storage capacity. NOWNodes offers a robust alternative \u2014 allowing developers and businesses to interact with the XRP Ledger through simple API calls without the overhead of node infrastructure.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"step-1-register-and-obtain-your-api-key\">Step 1: Register and Obtain Your API Key<\/h4>\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <a class=\"\" href=\"https:\/\/nownodes.io\">nownodes.io<\/a><\/li>\n\n\n\n<li>Sign up for an account<\/li>\n\n\n\n<li>Choose a subscription plan based on your usage needs<\/li>\n\n\n\n<li>Copy your unique API key, which will be used in all requests<\/li>\n<\/ol>\n\n\n\n<p><strong>Note:<\/strong> Keep your API key confidential and never include it in public source code or frontend applications.<\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"step-2-make-a-gatewaybalances-api-call\">Step 2: Make a <code>gateway_balances<\/code> API Call<\/h4>\n\n\n<p>Below is an example request for checking issued balances. This request excludes balances held by two operational hot wallets.<\/p>\n\n\n<h5 class=\"wp-block-heading\" id=\"endpoint\">Endpoint<\/h5>\n\n\n<pre class=\"wp-block-preformatted\"><code>POST https:\/\/xrp.nownodes.io<br><\/code><\/pre>\n\n\n<h5 class=\"wp-block-heading\" id=\"request-body\">Request Body<\/h5>\n\n\n<pre class=\"wp-block-preformatted\"><code>{<br>  \"method\": \"gateway_balances\",<br>  \"params\": [<br>    {<br>      \"account\": \"rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q\",<br>      \"hotwallet\": [<br>        \"rKm4uWpg9tfwbVSeATv4KxDe6mpE9yPkgJ\",<br>        \"ra7JkEzrgeKHdzKgo4EUUVBnxggY4z37kt\"<br>      ],<br>      \"ledger_index\": \"validated\",<br>      \"strict\": true<br>    }<br>  ]<br>}<br><\/code><\/pre>\n\n\n<h5 class=\"wp-block-heading\" id=\"example-response\">Example Response<\/h5>\n\n\n<pre class=\"wp-block-preformatted\"><code>{<br>  \"result\": {<br>    \"account\": \"rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q\",<br>    \"obligations\": {<br>      \"BTC\": \"1762.700511879441\",<br>      \"EUR\": \"813792.4267005104\",<br>      \"GBP\": \"4974.337212333351\",<br>      \"USD\": \"6739710.218284974\"<br>    },<br>    \"balances\": {<br>      \"rKm4uWpg9tfwbVSeATv4KxDe6mpE9yPkgJ\": [<br>        {<br>          \"currency\": \"EUR\",<br>          \"value\": \"144816.1965999999\"<br>        }<br>      ],<br>      \"ra7JkEzrgeKHdzKgo4EUUVBnxggY4z37kt\": [<br>        {<br>          \"currency\": \"USD\",<br>          \"value\": \"6677.38614\"<br>        }<br>      ]<br>    },<br>    \"frozen_balances\": {<br>      \"r4keXr5myiU4iTLh68ZqZ2CgsJ8dM9FSW6\": [<br>        {<br>          \"currency\": \"BTC\",<br>          \"value\": \"0.091207822800868\"<br>        }<br>      ]<br>    },<br>    \"validated\": true<br>  }<br>}<br><\/code><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id=\"interpreting-the-response\">Interpreting the Response<\/h2>\n\n\n<ul class=\"wp-block-list\">\n<li><strong>account<\/strong> \u2013 The issuer account queried<\/li>\n\n\n\n<li><strong>obligations<\/strong> \u2013 Total amount of each currency issued and in circulation (excluding the issuer\u2019s own wallets)<\/li>\n\n\n\n<li><strong>balances<\/strong> \u2013 Specific accounts and how much of each asset they hold (excluding hot wallets)<\/li>\n\n\n\n<li><strong>frozen_balances<\/strong> \u2013 Amounts that are currently frozen and cannot be moved<\/li>\n\n\n\n<li><strong>validated<\/strong> \u2013 Indicates that the data comes from a finalized and trusted ledger state<\/li>\n<\/ul>\n\n\n<h2 class=\"wp-block-heading\" id=\"security-recommendations\">Security Recommendations<\/h2>\n\n\n<ul class=\"wp-block-list\">\n<li>Always store your API key in secure environments (e.g., server-side variables)<\/li>\n\n\n\n<li>Rotate API keys periodically<\/li>\n\n\n\n<li>Avoid exposing API keys in public repositories or frontend code<\/li>\n\n\n\n<li>Monitor usage limits and logs if available through your NOWNodes dashboard<\/li>\n<\/ul>\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n<p>The <code>gateway_balances<\/code> method is a powerful API endpoint for tracking asset issuance, monitoring obligations, and ensuring transparency across the XRP Ledger. It is essential for any organization managing issued assets on XRPL.<\/p>\n\n\n\n<p>With NOWNodes, you gain access to this functionality instantly \u2014 without worrying about infrastructure setup or synchronization delays. This allows developers and businesses to focus on building valuable financial applications, with full visibility into the on-chain state of their tokens.<\/p>\n\n\n\n<p>For further assistance or technical questions, reach out to <a class=\"\" href=\"https:\/\/nownodes.io\">NOWNodes support<\/a> or browse their documentation for more XRPL API methods and integration examples.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Track issued tokens on the XRP Ledger &#8211; one of the most important tasks for developers and financial operators is understanding how much of an asset has been issued and who currently holds it. This is particularly relevant for gateways, stablecoin issuers, and institutional players utilizing the XRP Ledger for tokenized assets. In this guide, [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1286,"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":[7,322],"tags":[203,40,123,376],"class_list":["post-1285","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-guides","category-ripple-xrp","tag-api","tag-mainnet","tag-rpc-nodes","tag-xrp"],"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 Track Issued Tokens on XRP using Gateway Balance<\/title>\n<meta name=\"description\" content=\"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL 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\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Track Issued Tokens on XRP using Gateway Balance\" \/>\n<meta property=\"og:description\" content=\"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL node\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-15T10:46:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/04\/coin_4-2.png\" \/>\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\/png\" \/>\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-track-issued-tokens-on-xrp-using-gateway-balance\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"How to Track Issued Tokens on XRP using Gateway Balance\",\"datePublished\":\"2025-04-15T10:46:44+00:00\",\"dateModified\":\"2025-04-15T10:46:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\"},\"wordCount\":499,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"API\",\"Mainnet\",\"RPC Nodes\",\"xrp\"],\"articleSection\":[\"Node Guides\",\"Ripple XRP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\",\"url\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\",\"name\":\"How to Track Issued Tokens on XRP using Gateway Balance\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-04-15T10:46:44+00:00\",\"dateModified\":\"2025-04-15T10:46:44+00:00\",\"description\":\"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL node\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#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\":\"How to Track Issued Tokens on XRP using Gateway 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\/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 Track Issued Tokens on XRP using Gateway Balance","description":"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL 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\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/","og_locale":"en_US","og_type":"article","og_title":"How to Track Issued Tokens on XRP using Gateway Balance","og_description":"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL node","og_url":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-04-15T10:46:44+00:00","og_image":[{"width":2400,"height":1200,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/04\/coin_4-2.png","type":"image\/png"}],"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-track-issued-tokens-on-xrp-using-gateway-balance\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"How to Track Issued Tokens on XRP using Gateway Balance","datePublished":"2025-04-15T10:46:44+00:00","dateModified":"2025-04-15T10:46:44+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/"},"wordCount":499,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["API","Mainnet","RPC Nodes","xrp"],"articleSection":["Node Guides","Ripple XRP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/","url":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/","name":"How to Track Issued Tokens on XRP using Gateway Balance","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-04-15T10:46:44+00:00","dateModified":"2025-04-15T10:46:44+00:00","description":"We will explore how to use the gateway balances method to retrieve detailed information about issued tokens, obligations, balances held by third parties, and frozen funds \u2014 all without running your own XRPL node","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/how-to-track-issued-tokens-on-xrp-using-gateway-balance\/#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":"How to Track Issued Tokens on XRP using Gateway 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\/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\/1285","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=1285"}],"version-history":[{"count":2,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1285\/revisions"}],"predecessor-version":[{"id":1288,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1285\/revisions\/1288"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1286"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1285"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1285"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1285"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}