Skip to main content

1. Get a key

Sign up at dev.blockscout.com with email, Google, or GitHub. Open the Keys section and click Create API Key. Keys start with proapi_ and are shown once — copy it somewhere safe, not into a Git repo. No credit card required for the free tier.

2. Make a call

Every PRO API call follows the same shape: one base URL, a chain_id to pick the network, and your key.
That’s the native ETH balance (in wei) for the given address on Ethereum mainnet.

3. Understand the parts

The same request works on any chain by changing only chain_id — no new key, no new base URL, no separate account.

4. Try the REST API

The RPC-style call above mirrors Etherscan’s API shape for easy migration. Blockscout also has a REST API with richer, decoded data — human-readable transaction summaries, NFT metadata, contract read/write state, and more:
See the full REST API reference for what’s available.

Next steps