Unlimited Node Pricing
Dwellir Unlimited Node pricing: a single RPC endpoint with unmetered requests at a fixed monthly price, with RPS ceilings from 25 to 1,000 and no overages.
An Unlimited Node is a single Dwellir endpoint with the meter switched off. While it is active, requests through that endpoint stop drawing on your plan's monthly API credit allowance. The endpoint is capped at the RPS ceiling you chose instead, and you pay one fixed monthly price with no per-response billing.
It sits between shared node plans and dedicated clusters: more headroom than a plan allowance, far less commitment than private infrastructure.
The ladder
Five rungs, priced at a flat $4.80 per RPS per month. There are no in-between steps.
| Tier | Monthly price | Requests at the ceiling | Effective cost per million | Metered equivalent at $2.00/M | Saving |
|---|---|---|---|---|---|
| 25 RPS | $119 | 65M/mo | $1.83 | $130 | 8% |
| 100 RPS | $479 | 260M/mo | $1.84 | $520 | 8% |
| 250 RPS | $1,199 | 650M/mo | $1.84 | $1,300 | 8% |
| 500 RPS | $2,399 | 1.3B/mo | $1.85 | $2,600 | 8% |
| 1000 RPS | $4,799 | 2.6B/mo | $1.85 | $5,200 | 8% |
Prices are monthly USD list, per node, exclusive of tax. Pricing version 2026-08-13.
Where the comparison comes from
rps × 2,600,000 seconds × $2.00 per million responses = metered equivalentThe metered equivalent is what the same throughput would cost at the Scale plan's per-million rate if you ran at the ceiling for a whole month — $5.20 per RPS per month, against the Unlimited Node's $4.80. It is the ceiling an Unlimited Node replaces, not an invented list price, so the headline saving only lands for customers who actually run near their cap. The flat, forecastable bill is the other half of the value.
Use the calculator to work out where your own workload lands.
What an Unlimited Node is
Unmetered requests
Requests through the endpoint no longer consume API credits. There is no credit counter to watch, no month-end throttling, and no compute-unit multiplier on trace or debug methods — consistent with Dwellir's normal billing, where 1 response = 1 credit on every method.
A ceiling, not a floor
The RPS figure is the cap the gateway enforces. It is not a throughput guarantee. Beneath the cap you get whatever the cluster behind the endpoint can serve. If you need contractually guaranteed throughput, that is a dedicated cluster.
The cap binds both ways
An Unlimited Node runs at its own RPS ceiling even when your plan's rate limit is higher. A Scale plan account (5,000 RPS) with a 100 RPS Unlimited Node gets 100 RPS on that endpoint. Pick the rung that matches your real peak.
One node, one endpoint
An Unlimited Node covers one endpoint route. Unmetering a second endpoint means a second Unlimited Node. This is deliberate: you can move a hot path to a ceiling and leave everything else on the shared plan.
Shared pool, not dedicated hardware
Unlimited Nodes are served from Dwellir's shared node pool. Dedicated hardware, custom regions, and a custom SLA are a separate product.
Premium endpoints
Buying an Unlimited Node on a locked premium endpoint adds the required premium add-on to the same purchase, as a second line item.
Exceeding the ceiling
Requests above the ceiling are rate limited at the edge and return the standard 429 response:
{
"jsonrpc": "2.0",
"error": {
"code": -32005,
"message": "Rate limit exceeded"
},
"id": 1
}Nothing is charged at request time, so there is no way to run up an unexpected bill. Handle 429s the same way you would on a shared plan — see Rate Limits for retry and backoff guidance.
Billing mechanics
| First charge | Prorated for the remainder of the current cycle, then the full monthly price from the next boundary. |
| Tax | Quoted at checkout, not included in the list prices above. |
| Downgrades | Take effect at the period boundary. The ceiling you paid for holds until then. |
| Upgrades | Not self-serve — contact support so the unused period is credited properly. |
| Cancellation | Recurs monthly until cancelled; access runs to the end of the paid period. |
| Price integrity | Every quote carries its pricing version. A stale client price is rejected rather than honoured. |
Choosing between the options
| Shared nodes | Unlimited Nodes | Dedicated clusters | |
|---|---|---|---|
| Billing | Per response, plus overages | Flat monthly, per node | Flat monthly, per cluster |
| Requests | Capped by plan allowance | Unlimited beneath the ceiling | Unlimited |
| Throughput | 20–5,000 RPS by plan | 25–1,000 RPS ceiling | Sized to the workload |
| Infrastructure | Shared node pool | Shared node pool | Isolated, redundant nodes |
| Overage risk | Real | None | None |
| Region choice | Automatic routing | Automatic routing | You pick the regions |
| SLA | Standard | Standard | Custom, up to 99.99% |
| Entry price | Free, then $49/mo | $119/mo per node | Quoted per cluster |
| Setup | Self-serve | Self-serve | Scoping call |
Rules of thumb:
- Your bill is unpredictable and overages keep appearing — move the noisy endpoint to an Unlimited Node.
- Your traffic is spiky but low on average — stay on the shared plan. A ceiling you use 20% of is worse value than credits.
- You need more than 1,000 RPS, specific regions, or a custom SLA — talk to us about a dedicated cluster.
Getting started
- Open your endpoint in the dashboard.
- Make it an Unlimited Node and pick the ceiling that covers your peak.
- Keep using the same endpoint URL and API key — nothing about the request path changes.
Questions about sizing? Contact our team.
Shared Node Pricing
Dwellir shared node pricing: 1 response = 1 API credit with no compute units. Free, Developer, Growth, Scale, and Enterprise plans for 140+ blockchain networks.
Rate Limits
Dwellir rate limits by plan, token bucket algorithm with burst protection, handling 429 errors, and setting per-key usage quotas to control API spend.