Arbitrum Nova RPC Endpoint
Fast, flat-rate Arbitrum Nova RPC node provider — free tier, no KYC, HTTP & WebSocket.
Nova is an Arbitrum chain using the AnyTrust data-availability model: transaction data goes to a committee instead of Ethereum calldata, which cuts fees sharply at the cost of a different trust assumption.
arbitrum-novaAbout Arbitrum Nova
Arbitrum launched Nova in August 2022 as a companion to Arbitrum One for applications that prioritise cheap throughput over maximal data availability. Both are Nitro-stack optimistic rollups secured by fraud proofs and settlement on Ethereum, but Nova's cost structure makes it the usual choice for high-volume, low-value activity such as gaming and social applications.
From the RPC side Nova behaves like other Arbitrum chains — standard eth_* plus the chain-specific quirks of a sequenced rollup, including a gas limit field that is a sentinel rather than real capacity. The chain ID you need is 42170.
Common Use Cases on Arbitrum Nova
- Gaming and high-frequency state
- Social applications
- Micro-payments
- Cost-sensitive DeFi
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/arbitrum-nova?key=YOUR_API_KEYQuick Start: Connect to Arbitrum Nova
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider(
"https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Arbitrum Nova block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEY"))
print("Arbitrum Nova block:", w3.eth.block_number)Add Arbitrum Nova to MetaMask
https://rpc.swiftnodes.io/rpc/arbitrum-nova?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/arbitrum-nova?key=YOUR_API_KEYFeatures of SwiftNodes for Arbitrum Nova
- Multiple load-balanced upstream nodes for high availability
- Health-checked every 60 seconds with automatic failover
- Free tier available — no credit card or KYC required
- Flat-rate monthly pricing with no per-request fees
- HTTP and WebSocket support
- One API key works across all 75+ supported chains, including Arbitrum Nova
Rate Limits
| Plan | Price | HTTP req/s | WS msg/s |
|---|---|---|---|
| Free | $0/mo | 2 | 1 |
| Starter | $49/mo | 50 | 25 |
| Growth | $89/mo | 150 | 75 |
| Scale | $149/mo | 300 | 150 |
| Pro | $249/mo | 500 | 250 |
Ready to start building on Arbitrum Nova? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.