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.

Network: Arc
Type: EVM
Chain ID: 5042
Slug: arc
Native token: USDC (USD Coin)
Finality: Sub-second (BFT)
Mainnet: September 2026
Category: Layer 1

About 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_KEY

WebSocket Endpoint

wss://rpc.swiftnodes.io/ws/arc?key=YOUR_API_KEY

Quick 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

Network Name: Arc (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/arc?key=YOUR_API_KEY
Chain ID: 5042
Currency Symbol: USDC
WebSocket: wss://rpc.swiftnodes.io/ws/arc?key=YOUR_API_KEY

Features 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

PlanPriceHTTP req/sWS msg/s
Free$0/mo21
Starter$49/mo5025
Growth$89/mo15075
Scale$149/mo300150
Pro$249/mo500250

Ready to start building on Arc? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.