Capacity
01- Shared RPC
- Shared pool, scaled by us
- Dedicated nodes
- Reserved node, yours alone
For developers
RPC, WebSocket subscriptions and a REST blockchain API from one place, under one key. Build the integration on the free plan, then move production traffic to the endpoint it needs — without running nodes in-house.
Project key
sk_live_9f2c7a41••••••••••••
One key for RPC, subscriptions and REST
Developer workflow
Four steps, and every one of them is a line of code rather than a ticket: the key works right after signup, the endpoint answers the first call, and the plan changes without touching the integration.
01
Create a key
One key opens every network and every product. It travels in a header, not in the URL, so it never lands in logs and referrers.
x-api-key: sk_live_9f2c7a41
02
Send the first call
The same JSON-RPC the node itself speaks. No wrapper to learn, no schema of ours to map onto the chain.
POST /eth/mainnet
03
Subscribe to events
Blocks, logs and transfers arrive over one socket — instead of a worker asking the node the same question all day.
eth_subscribe · newHeads
04
Scale the endpoint
A plan raises the ceiling, a dedicated node removes the neighbours. The address and the key stay exactly as they were.
200 rps
Subscriptions
One minute of the same network seen two ways: a worker that asks every few seconds, and a subscription that gets told. Pick a network — what polling costs is different in each one.
block every 12 s
Polling every 5 s
12 requests a minute
Subscription
one connection
Here the worker does catch every block, but finds out about it 2.5 s late on average, and pays for the wait in requests.
A worker like that runs round the clock: 518,400 requests a month, or 5.2× the free plan's monthly limit. A subscription holds one connection and hears about the same blocks first.
Shared or dedicated
Both run on the same API and the same key, so moving over is a URL change rather than a rewrite.
| Criterion | Shared RPC | Dedicated nodes |
|---|---|---|
| Capacity | Shared pool, scaled by us | Reserved node, yours alone |
| Noisy neighbours | Fair queue per key | None — single tenant |
| Rate limits | Per plan, burst-friendly | Whatever the node can serve |
| Archive | Included | Included, custom retention |
| Placement | Nearest healthy region | Pinned to your region |
| Setup | Instant | Provisioned within a day |
| Best for | Wallets, apps, bursty traffic | Exchanges, indexers, steady load |
Questions
Free to start. No credit card required.