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.

Network: Zora
Type: EVM
Chain ID: 7777777
Slug: zora
Native token: ETH (Ether)
Block time: ~2 seconds
Finality: Soft confirmation in seconds; hard finality after the optimistic challenge window settles to Ethereum L1
Mainnet: June 21, 2023
Category: Layer 2 (OP Stack optimistic rollup, Optimism Superchain)

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

WebSocket Endpoint

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

Quick 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

Network Name: Zora (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/zora?key=YOUR_API_KEY
Chain ID: 7777777
Currency Symbol: ETH
WebSocket: wss://rpc.swiftnodes.io/ws/zora?key=YOUR_API_KEY

Bridging 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

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

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.

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