<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: RpcFree.com</title>
    <description>The latest articles on DEV Community by RpcFree.com (@rpcfree).</description>
    <link>https://dev.to/rpcfree</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3934294%2Fdfe6da09-d60f-453c-bcc0-bf390b988cc2.png</url>
      <title>DEV Community: RpcFree.com</title>
      <link>https://dev.to/rpcfree</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rpcfree"/>
    <language>en</language>
    <item>
      <title>Free RPC for 4 chains, no signup, and the URL actually works when you click it</title>
      <dc:creator>RpcFree.com</dc:creator>
      <pubDate>Sat, 16 May 2026 06:10:53 +0000</pubDate>
      <link>https://dev.to/rpcfree/free-rpc-for-4-chains-no-signup-and-the-url-actually-works-when-you-click-it-2p34</link>
      <guid>https://dev.to/rpcfree/free-rpc-for-4-chains-no-signup-and-the-url-actually-works-when-you-click-it-2p34</guid>
      <description>&lt;p&gt;A few weeks ago I needed a free Ethereum RPC for a side project. Nothing fancy, just somewhere to point ethers.js at.&lt;/p&gt;

&lt;p&gt;I googled "free Ethereum RPC" and clicked through five or six results. Every single one wanted me to make an account. Verify my email. Pick a tier. Then they gave me a URL with an API key glued to the end — which I now had to keep secret, because if I committed it to GitHub I'd leak my own quota.&lt;/p&gt;

&lt;p&gt;For a weekend project where I just wanted to read a couple of block numbers.&lt;/p&gt;

&lt;p&gt;This is rpcfree.com. It's the version of "free RPC" that actually means free.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you get
&lt;/h2&gt;

&lt;p&gt;Four chains: Ethereum, Base, Polygon, Arbitrum. One URL per chain, no key on the end:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://rpcfree.com/ethereum-rpc
https://rpcfree.com/base-rpc
https://rpcfree.com/polygon-rpc
https://rpcfree.com/arbitrum-rpc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Paste into MetaMask. Paste into hardhat. Paste into a Cloudflare Worker. Wherever you need an RPC, that's it.&lt;/p&gt;

&lt;p&gt;You get 333,000 calls per day. Ten million per month. Ten requests per second, with a burst of twenty. No account, no email, no captcha, no waiting list. The same URL works for everyone.&lt;/p&gt;

&lt;p&gt;If you actually click the URL in a browser, you don't get a JSON error or a "405 Method Not Allowed" page. You get a real documentation page with the current block number, current gas price, code snippets for the five most common libraries, and a button that runs a JSON-RPC call live against the endpoint. Most people who try it for the first time hit that button just to confirm it's not a marketing trick.&lt;/p&gt;

&lt;h2&gt;
  
  
  How most free RPC services work
&lt;/h2&gt;

&lt;p&gt;If you've shopped around for an RPC, you've probably seen the same pattern repeated.&lt;/p&gt;

&lt;p&gt;The premium services with great dashboards and deep features — the ones that occupy the top of every "best RPC" article — give you a free tier in exchange for signup. You make an account, verify your email, get a dashboard, and they hand you a URL with an API key on the end. The friction is small if you're starting a serious production project. It's significant if you just want to read a couple of balances on a weekend.&lt;/p&gt;

&lt;p&gt;Then there are the truly keyless public endpoints. Free without signup. But they're just endpoints. No documentation when you click the URL, no live response stats, no one-click wallet integration. You're on your own to figure out if and when they're working. Some are reliable, others less so, and you tend to find out which is which by hitting rate limits at the wrong moment.&lt;/p&gt;

&lt;p&gt;rpcfree.com sits in a specific gap. Keyless and free like the public endpoints, but with the kind of interface most people associate with the paid services. The page works. The endpoints are documented. Live stats show you they're responding. One click adds the network to MetaMask. You don't trade an account for a usable experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  A few things that aren't obvious
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Archive data is included.&lt;/strong&gt; You can query state from block 0 on every chain. Most free providers cap you at the last 128 blocks of state. We don't.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Trace and debug methods work.&lt;/strong&gt; &lt;code&gt;debug_traceTransaction&lt;/code&gt;, &lt;code&gt;trace_call&lt;/code&gt;, the lot. Indispensable when you're debugging a contract revert at 2 AM. Most free tiers omit these entirely and you don't find out until you need them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CU costs are published.&lt;/strong&gt; &lt;code&gt;eth_blockNumber&lt;/code&gt; costs 10 compute units. &lt;code&gt;eth_call&lt;/code&gt; costs 26. &lt;code&gt;eth_getLogs&lt;/code&gt; is 75. &lt;code&gt;debug_trace&lt;/code&gt; is 309. So you can calculate your daily budget upfront instead of guessing. Most providers obscure the cost model on purpose.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Same URL serves documentation and JSON-RPC.&lt;/strong&gt; Click it in a browser, you get docs. POST to it from your app, you get RPC responses. This sounds trivial but it changes how the link feels when someone shares it. You're not asking people to trust a black-box URL.&lt;/p&gt;

&lt;h2&gt;
  
  
  When you outgrow the free tier
&lt;/h2&gt;

&lt;p&gt;The honest answer: there is a business model. The free service runs on Etox infrastructure, and if you need more — 30 million CU per month with a free signup, or 300 million with a $49/mo plan — that's at etox.io.&lt;/p&gt;

&lt;p&gt;But the free tier isn't a teaser. 333,000 calls per day is real. A typical indie Web3 app, a learning project, a developer demo, a backend service polling balances — none of these come close to the daily cap. We've sized it for actual use, not for forcing upgrades.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://rpcfree.com/ethereum-rpc &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or open &lt;a href="https://rpcfree.com" rel="noopener noreferrer"&gt;https://rpcfree.com&lt;/a&gt; in a browser and hit the "Try it now" button. Either way, it works the same.&lt;/p&gt;

&lt;p&gt;If you're building something and you've been putting off the "I need to sign up for an RPC service" task, paste one of those four URLs and skip the task entirely.&lt;/p&gt;

&lt;p&gt;If it saves you twenty minutes of account creation, that was the point.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;rpcfree.com is operated by &lt;a href="https://etox.io" rel="noopener noreferrer"&gt;Etox&lt;/a&gt; — blockchain RPC infrastructure. Free tier is open to everyone, no signup required. Pro plans available when you need more.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>web3</category>
      <category>blockchain</category>
      <category>rpc</category>
      <category>ethereum</category>
    </item>
  </channel>
</rss>
