Arc RPC Endpoint
Fast, flat-rate Arc RPC node provider — free tier, no KYC, HTTP & WebSocket.
Arc is an EVM-compatible Layer 1 built by Circle and purpose-designed for stablecoin settlement: transaction fees are paid in USDC rather than a volatile native token, and finality is sub-second.
arcAbout Arc
Arc went live on public mainnet in September 2026 after roughly a year of testnet operation with institutional participants. Circle pairs a Reth-based EVM execution layer with Malachite BFT consensus to get deterministic, sub-second finality — the property payment systems actually need, as opposed to probabilistic confirmation.
The practical difference for developers is the fee model: you pay gas in USDC, so transaction cost is denominated in dollars instead of fluctuating with a token price. Balances and receipts still behave like any other EVM chain, so existing tooling ports across unchanged.
Common Use Cases on Arc
- Stablecoin payments
- Treasury and FX movement
- Tokenised assets
- Agent-driven payments
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/arc?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/arc?key=YOUR_API_KEYQuick Start: Connect to Arc
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/arc?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/arc?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Arc block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/arc?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/arc?key=YOUR_API_KEY"))
print("Arc block:", w3.eth.block_number)Add Arc to MetaMask
https://rpc.swiftnodes.io/rpc/arc?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/arc?key=YOUR_API_KEYFeatures of SwiftNodes for Arc
- 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 Arc
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 Arc? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.