peaq RPC Endpoint
Fast, flat-rate peaq RPC node provider — free tier, no KYC, HTTP & WebSocket.
peaq is an EVM-compatible Layer 1 focused on DePIN — machines, sensors, vehicles and connectivity hardware that register on-chain, authenticate themselves and earn for the data or services they provide.
peaqAbout peaq
peaq extends the Cosmos SDK with an EVM execution environment, so smart contracts are Solidity-compatible while the chain also carries machine-identity and accounting primitives designed for devices rather than people. Machines get decentralised identities, can issue and pay for API calls, and rewards flow to the hardware operator.
The practical RPC picture is a standard eth_* surface against chain ID 3338, with PEAQ as the gas token. Workloads on peaq tend to look different from DeFi: high volumes of small, machine-initiated transactions, which usually makes throughput limits and rate limiting the thing to size for, not contract complexity.
Common Use Cases on peaq
- DePIN device registries
- Machine-to-machine payments
- Connectivity and sensor marketplaces
- Carbon and mobility data
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/peaq?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/peaq?key=YOUR_API_KEYQuick Start: Connect to peaq
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/peaq?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/peaq?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("peaq block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/peaq?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/peaq?key=YOUR_API_KEY"))
print("peaq block:", w3.eth.block_number)Add peaq to MetaMask
https://rpc.swiftnodes.io/rpc/peaq?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/peaq?key=YOUR_API_KEYFeatures of SwiftNodes for peaq
- 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 peaq
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 peaq? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.