Zora RPC Endpoint
Fast, flat-rate Zora RPC node provider — free tier, no KYC, HTTP & WebSocket.
Zora Network is an Ethereum Layer 2 built on the OP Stack and part of the Optimism Superchain, oriented toward creators, NFTs, and onchain media. It uses ETH for gas and inherits Ethereum security through optimistic rollup settlement.
zoraAbout Zora
Zora Network (chain ID 7777777) launched its mainnet in June 2023 as an OP Stack rollup. It produces blocks roughly every 2 seconds and uses ETH as its gas token.
Zora is purpose-built for low-cost NFT minting and creator monetization. As an EVM chain it supports Foundry, Hardhat, viem, and ethers.js, and benefits from shared Superchain infrastructure.
Common Use Cases on Zora
- NFT minting
- Creator monetization
- Onchain media
- Low-cost collectibles
- Social and content apps
Zora Ecosystem
Zora's own minting and creator products anchor the network, alongside Superchain peers such as Optimism, Base, and opBNB that share OP Stack tooling.
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/zora?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/zora?key=YOUR_API_KEYQuick Start: Connect to Zora
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/zora?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/zora?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Zora block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/zora?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/zora?key=YOUR_API_KEY"))
print("Zora block:", w3.eth.block_number)Add Zora to MetaMask
https://rpc.swiftnodes.io/rpc/zora?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/zora?key=YOUR_API_KEYBridging to Zora
Canonical OP Stack bridge between Ethereum and Zora, plus third-party routes such as Across and Stargate for faster transfers.
Features of SwiftNodes for Zora
- 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 Zora
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 |
Frequently Asked Questions: Zora
What's Zora's chain ID?
Zora Network mainnet is chain ID 7777777.
What does Zora use for gas?
Zora uses ETH for gas. It does not have a separate gas token.
Is Zora part of the Optimism Superchain?
Yes. Zora is an OP Stack rollup and a member of the Optimism Superchain, settling to Ethereum.
Zora guides from the blog
- Zora RPC: Building on the Creator L2Zora is an OP Stack L2 built for creators, NFTs, and onchain media — chain ID 7777777, ~2s blocks, ETH gas. It's EVM-equivalent, so viem and ethers just work. Here's what's different about building and indexing on a mint-heavy chain, plus the OP Stack details that matter.
- Zora RPC: A 2026 Developer's GuideZora is an OP Stack L2 built for mints, and minting traffic is bursty in a way that punishes public RPC endpoints. Here's what you need to build on Zora in 2026 — chain ID 7777777, Superchain finality, the public-node trap, and the query patterns for reading mints at scale.
Related L2 & rollup chains
Explore RPC endpoints for other L2 & rollup networks on SwiftNodes:
Ready to start building on Zora? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.