Skip to main content

Quick Start

Get an API key and make your first bex router request in under five minutes.

Share
Last updated on August 19, 2026

This guide walks through the five things everyone does first on bex router.

1. Create an API Key

Sign up, then generate a key from the dashboard. Every request authenticates with this one key — it works across all supported chains, so you don't create a separate key per network.

2. Pick a Chain and Send a Request

Each chain's quick-start doc has a copy-pasteable request. For example, Ethereum's JSON-RPC endpoint:

bash
curl https://api.bex.co/v1/<your-api-key>/ethereum \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

See Ethereum, Aptos, Sui, or Base for chain-specific quick starts.

3. Integrate with Your SDK

Most EVM chains support drop-in Web3.js and Ethers.js integration — just point the provider URL at your bex router endpoint. Each chain's docs include both (e.g. Ethereum Web3.js Integration).

4. Watch Your Compute Unit Usage

Every request consumes compute units — the metric that normalizes cost across chains and methods. The dashboard shows usage against your plan in real time.

5. Stay Within Rate Limits

Requests are also subject to rate limits & quotas (RPS and monthly compute unit caps). See the rate limit quick reference for the exact numbers per tier, and the guide to efficient RPC requests for batching and caching patterns that reduce both.

What's Next

Build on bex.co

Open-source infrastructure for apps and agents — deploy on machines you own, or use the hosted multi-chain API.

See pricing