Skip to content

FAQ

BlockReq is a Web3 RPC infrastructure platform that provides fast, reliable blockchain node access through a simple API.

No. BlockReq manages the infrastructure for you. Just create an endpoint and start making RPC calls.

Yes. Every account gets 80M RU per month for free, no credit card required.


RU (Request Unit) is our billing unit. Each RPC method costs a specific amount of RU. See the RU documentation for details.

Your API requests will return an error. You can:

  1. Wait for the monthly free refresh
  2. Purchase additional RU through the billing page
  • Free plan: No, the balance resets each month
  • Packages (Growth/Premium): Valid for 60 days from purchase
  • Pay As You Go: Never expires

Visit the Dashboard → Endpoints page. Your current balance is displayed at the top.


We support Ethereum JSON-RPC 2.0, the industry standard used by all major Web3 libraries (ethers.js, web3.js, viem, etc.).

Yes. Each endpoint provides both HTTPS and WSS URLs. WSS supports eth_subscribe for real-time data.

Typically under 100ms for most methods. Exact latency depends on the chain and method complexity.

Yes. Standard JSON-RPC batch requests are supported. Each method in the batch is billed individually.

Yes. Just set your RPC URL in your framework configuration:

Hardhat:

module.exports = {
networks: {
mainnet: {
url: "https://eth-mainnet.blockreq.com/v1/rpc/YOUR_API_KEY"
}
}
};

Foundry:

Terminal window
forge script Script.s.sol --rpc-url https://eth-mainnet.blockreq.com/v1/rpc/YOUR_API_KEY