{"id":1574,"date":"2025-07-23T09:43:06","date_gmt":"2025-07-23T09:43:06","guid":{"rendered":"https:\/\/nownodes.io\/blog\/?p=1574"},"modified":"2025-07-23T09:43:06","modified_gmt":"2025-07-23T09:43:06","slug":"how-to-check-solana-wallet-balance-using-nownodes-rpc","status":"publish","type":"post","link":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/","title":{"rendered":"How to Check Solana Wallet Balance Using NOWNodes RPC"},"content":{"rendered":"\n<p>If you&#8217;re building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the <code>getBalance<\/code> RPC call with NOWNodes.<\/p>\n\n\n\n<p>NOWNodes provides instant access to full Solana nodes through its managed RPC provider, giving you a ready-to-use Solana RPC URL without any setup or maintenance.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"check-solana-wallet-balance-with-getbalance\">Check Solana Wallet Balance with getBalance<\/h2>\n\n\n<p>To check a Solana wallet balance, you\u2019ll use the <code>getBalance<\/code> method. It returns the lamport balance of the account tied to the public key you provide.<\/p>\n\n\n\n<p><strong>1 SOL = 1,000,000,000 lamports<\/strong>. The value returned is always in lamports.<\/p>\n\n\n\n<p>Here\u2019s the exact request you can use.<\/p>\n\n\n<h3 class=\"wp-block-heading\" id=\"request\">Request<\/h3>\n\n\n<pre class=\"wp-block-preformatted\"><code>curl --location 'https:\/\/sol.nownodes.io' \\<br>--header 'Content-Type: application\/json' \\<br>--header 'api-key: YOUR_API_KEY' \\<br>--data '<br> {<br>    \"jsonrpc\": \"2.0\", \"id\": 1,<br>    \"method\": \"getBalance\",<br>    \"params\": [<br>      \"83astBRguLMdt2h5U1Tpdq5tjFoJ6noeGwaY3mDLVcri\"<br>    ]<br>  }<br>'<br><\/code><\/pre>\n\n\n\n<p>Replace:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>YOUR_API_KEY<\/code> with your actual API key from <a class=\"\" href=\"https:\/\/nownodes.io\">NOWNodes.io<\/a><\/li>\n\n\n\n<li>The wallet address inside <code>params<\/code> with the public key you want to check<\/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=\"response\">Response<\/h3>\n\n\n<pre class=\"wp-block-preformatted\"><code>{<br>  \"jsonrpc\": \"2.0\",<br>  \"result\": { <br>    \"context\": { \"slot\": 1 }, <br>    \"value\": 0 <br>  },<br>  \"id\": 1<br>}<br><\/code><\/pre>\n\n\n\n<p>The <code>value<\/code> field is the balance in lamports. In this example, the wallet holds <code>0<\/code> lamports.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"why-use-nownodes\">Why Use NOWNodes?<\/h2>\n\n\n<p>NOWNodes gives you access to a live <strong><a href=\"https:\/\/nownodes.io\/nodes\/solana-sol\">Solana RPC URL<\/a><\/strong>, which means:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>No need to run your own node<\/li>\n\n\n\n<li>Ready for production workloads<\/li>\n\n\n\n<li>HTTP and WSS methods are available<\/li>\n\n\n\n<li>Fast, stable, and scalable<\/li>\n\n\n\n<li>Easy to integrate into any backend, script, or app<\/li>\n<\/ul>\n\n\n\n<p>As a fully managed <strong>RPC provider<\/strong>, NOWNodes is ideal for developers who want to focus on building instead of managing infrastructure.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\">Summary<\/h2>\n\n\n<p>To check Solana wallet balance, all you need is a valid public key and a working API key from NOWNodes. Using the <code>getBalance<\/code> method, you can query any account\u2019s balance in lamports through a simple RPC request.<\/p>\n\n\n\n<p>If you&#8217;re looking for a reliable and fast way to interact with the Solana network, using NOWNodes as your RPC provider is one of the simplest and most efficient options available.<\/p>\n\n\n\n<p>Ready to get started? Get your API key from <a class=\"\" href=\"https:\/\/nownodes.io\">NOWNodes<\/a> and plug it into the request above.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes. NOWNodes provides instant access to full Solana nodes through its managed RPC provider, giving you a ready-to-use Solana RPC URL without any setup [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1575,"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":[34],"tags":[203,123,88,39],"class_list":["post-1574","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wallet-guides","tag-api","tag-rpc-nodes","tag-solana","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>How to Check Solana Wallet Balance with NOWNodes<\/title>\n<meta name=\"description\" content=\"If you&#039;re building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.\" \/>\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-check-solana-wallet-balance-using-nownodes-rpc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Solana Wallet Balance with NOWNodes\" \/>\n<meta property=\"og:description\" content=\"If you&#039;re building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\" \/>\n<meta property=\"og:site_name\" content=\"NOWNodes Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-23T09:43:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/07\/coin_14-7.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=\"2 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-check-solana-wallet-balance-using-nownodes-rpc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\"},\"author\":{\"name\":\"\u0410nastasia\",\"@id\":\"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8\"},\"headline\":\"How to Check Solana Wallet Balance Using NOWNodes RPC\",\"datePublished\":\"2025-07-23T09:43:06+00:00\",\"dateModified\":\"2025-07-23T09:43:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\"},\"wordCount\":305,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#organization\"},\"keywords\":[\"API\",\"RPC Nodes\",\"Solana\",\"Tutorial\"],\"articleSection\":[\"Wallet Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\",\"url\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\",\"name\":\"How to Check Solana Wallet Balance with NOWNodes\",\"isPartOf\":{\"@id\":\"https:\/\/nownodes.io\/blog\/#website\"},\"datePublished\":\"2025-07-23T09:43:06+00:00\",\"dateModified\":\"2025-07-23T09:43:06+00:00\",\"description\":\"If you're building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.\",\"breadcrumb\":{\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/nownodes.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wallet Guides\",\"item\":\"https:\/\/nownodes.io\/blog\/category\/wallet-guides\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Check Solana Wallet Balance Using NOWNodes RPC\"}]},{\"@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 Check Solana Wallet Balance with NOWNodes","description":"If you're building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.","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-check-solana-wallet-balance-using-nownodes-rpc\/","og_locale":"en_US","og_type":"article","og_title":"How to Check Solana Wallet Balance with NOWNodes","og_description":"If you're building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.","og_url":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/","og_site_name":"NOWNodes Blog","article_published_time":"2025-07-23T09:43:06+00:00","og_image":[{"width":2400,"height":1200,"url":"https:\/\/nownodes.io\/blog\/wp-content\/uploads\/2025\/07\/coin_14-7.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#article","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/"},"author":{"name":"\u0410nastasia","@id":"https:\/\/nownodes.io\/blog\/#\/schema\/person\/0890ec68e813adecb93c18ee00e1e7a8"},"headline":"How to Check Solana Wallet Balance Using NOWNodes RPC","datePublished":"2025-07-23T09:43:06+00:00","dateModified":"2025-07-23T09:43:06+00:00","mainEntityOfPage":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/"},"wordCount":305,"commentCount":0,"publisher":{"@id":"https:\/\/nownodes.io\/blog\/#organization"},"keywords":["API","RPC Nodes","Solana","Tutorial"],"articleSection":["Wallet Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/","url":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/","name":"How to Check Solana Wallet Balance with NOWNodes","isPartOf":{"@id":"https:\/\/nownodes.io\/blog\/#website"},"datePublished":"2025-07-23T09:43:06+00:00","dateModified":"2025-07-23T09:43:06+00:00","description":"If you're building on Solana and need a fast and reliable way to check Solana wallet balance, this guide walks you through the exact method using the getBalance RPC call with NOWNodes.","breadcrumb":{"@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nownodes.io\/blog\/how-to-check-solana-wallet-balance-using-nownodes-rpc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/nownodes.io\/blog"},{"@type":"ListItem","position":2,"name":"Wallet Guides","item":"https:\/\/nownodes.io\/blog\/category\/wallet-guides"},{"@type":"ListItem","position":3,"name":"How to Check Solana Wallet Balance Using NOWNodes RPC"}]},{"@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\/1574","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=1574"}],"version-history":[{"count":1,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1574\/revisions"}],"predecessor-version":[{"id":1576,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/posts\/1574\/revisions\/1576"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media\/1575"}],"wp:attachment":[{"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/media?parent=1574"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/categories?post=1574"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nownodes.io\/blog\/wp-json\/wp\/v2\/tags?post=1574"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}