Metis RPC Endpoint

Fast, flat-rate Metis RPC node provider — free tier, no KYC, HTTP & WebSocket.

Metis (Andromeda) is an EVM-equivalent Ethereum Layer 2 optimistic rollup that uses METIS as its native gas token. It is notable for being among the first optimistic rollups to decentralize its sequencer.

Network: Metis
Type: EVM
Chain ID: 1088
Slug: metis
Native token: METIS (Metis)
Block time: ~2 seconds
Finality: Fast L2 confirmation; withdrawals to Ethereum follow the optimistic challenge window
Mainnet: 2021
Category: Layer 2 (optimistic rollup with decentralized sequencer)

About Metis

Metis Andromeda launched its mainnet in 2021, originally forked from Optimism's OVM, as an EVM-equivalent optimistic rollup settling to Ethereum. It uses METIS, rather than ETH, as the native gas token.

Metis has worked to decentralize its sequencer, moving from a single sequencer to a sequencer pool, and is among the first optimistic rollups to pursue sequencer decentralization to reduce single points of failure. The network targets low fees and fast block times and is EVM-compatible, so Solidity tooling such as Hardhat, Foundry, ethers.js, and viem applies directly. It is used for DeFi, gaming, and DAC-style applications.

Common Use Cases on Metis

  • Low-fee EVM transactions
  • DeFi protocols
  • On-chain gaming
  • DAC-style applications
  • Smart contract deployment
  • Bridged liquidity

Metis Ecosystem

The Metis ecosystem includes DeFi deployments such as Hummus and Netswap, along with infrastructure projects supporting its decentralized sequencer.

HTTP Endpoint

https://rpc.swiftnodes.io/rpc/metis?key=YOUR_API_KEY

WebSocket Endpoint

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

Quick Start: Connect to Metis

cURL

curl -X POST https://rpc.swiftnodes.io/rpc/metis?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/metis?key=YOUR_API_KEY"
);

const blockNumber = await provider.getBlockNumber();
console.log("Metis block:", blockNumber);

viem

import { createPublicClient, http } from "viem";

const client = createPublicClient({
  transport: http("https://rpc.swiftnodes.io/rpc/metis?key=YOUR_API_KEY"),
});

const blockNumber = await client.getBlockNumber();

web3.py

from web3 import Web3

w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/metis?key=YOUR_API_KEY"))
print("Metis block:", w3.eth.block_number)

Add Metis to MetaMask

Network Name: Metis (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/metis?key=YOUR_API_KEY
Chain ID: 1088
Currency Symbol: METIS
WebSocket: wss://rpc.swiftnodes.io/ws/metis?key=YOUR_API_KEY

Bridging to Metis

Assets move via the Metis canonical bridge from Ethereum, with third-party routes available through providers such as Celer cBridge.

Features of SwiftNodes for Metis

  • 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 Metis

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: Metis

What's Metis's chain ID?

Metis Andromeda mainnet is chain ID 1088.

What token is used for gas on Metis?

Metis uses METIS as its native gas token rather than ETH.

Does Metis have a decentralized sequencer?

Yes - Metis is among the first optimistic rollups to decentralize its sequencer, moving to a sequencer pool.

Is WebSocket supported?

Yes - SwiftNodes provides HTTP and WebSocket (wss://) endpoints for Metis.

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