Getting Started
RouteMesh is the RPC service we wish we you had when building in crypto. It began from our need of doing multi-chain analytics and being frustrated with the experience of:
- Managing multiple provider subscriptions
- Inconsistent pricing across providers
- Unreliable responses from the same provider
- Painful Fallback management
- Arbitrary pricing structures with expensive overage costs
- No single provider with access to all chains
- Varying latencies/geographic locations
- Bills from multiple RPC providers
As a result, we built RouteMesh to solve these problems once and for all.
Quick Start
1. Top Up Your Account
- Go to the Billing page
- Click on the "Buy More Credits" button and purchase as many credits as you think you need. Once the buying process is complete, the credits will be applied immediately.
Note: the credits never expire, and you pay for only what you use.
Note (2): one credit is equivalent to one dollar.
2. Sign Up and Get Your API Key
- Visit the RouteMesh Dashboard
- Create your account
- Navigate to the API Keys section
- Create your first API key
- Choose your routing strategy (Economy or Performance)
- Budget (Cost-Optimized): Prioritizes cost-effective nodes while maintaining reliability
- Performance (Latency-Optimized): Prioritizes fastest response times for optimal user experience
3) Make Your First Request
Replace your existing RPC endpoint with RouteMesh:
# Instead of:
curl -X POST https://your-provider.com/rpc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
# Use RouteMesh:
curl -X POST https://beta.router.0xarc.io/rpc/{chain_id}/{api_key} \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Supported Networks
RouteMesh supports all major blockchain networks, including:
- Ethereum Mainnet & Testnets
- Layer 2 Solutions: Polygon, Arbitrum, Optimism, Base
- Alternative L1s: Avalanche, Fantom, BSC
- And many more
For a complete list of supported chains and their chain IDs, visit the Supported Chains page.
Updated 12 days ago