Wallet token balance
API · /tokeninfo-api
ERC-20 Token Info API
Live ERC-20 token metadata, read straight off the blockchain. Give it any token contract address and it returns the token's name, symbol, decimals and total supply — both as the raw on-chain integer and as a human-formatted number — by calling the ERC-20 contract directly via the chain's public JSON-RPC node (eth_call), confirming first that the address is really a contract. The USD Coin contract resolves to "USD Coin", symbol USDC, 6 decimals; Wrapped BTC on Polygon to "(PoS) Wrapped BTC", symbol WBTC, 8 decimals. The balance endpoint reads any wallet's holding of any token — pass the token contract and an owner address and it returns the balance raw and formatted with the token's own decimals and symbol. It works across seven EVM chains — Ethereum, Polygon, BNB Smart Chain, Arbitrum, Optimism, Base and Avalanche — with friendly aliases (eth, matic, bnb, arb, op, avax). This is the token-metadata and token-balance layer every wallet, DEX, portfolio tracker, block explorer and DeFi dashboard needs: turn a bare 0x… contract into a named, decimalled token, and resolve any holder's balance, in one call. Read live from the chain, no key on the data source, nothing cached. Distinct from native-coin balance and market-price APIs — this is on-chain ERC-20 contract data read directly from the blockchain. 4 endpoints across 7 chains.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 136 ms
- Server probes · 24h
- Subscribers
- 4,585
- active
- Total calls
- 24
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 8,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 8,000 calls/month
- 3 req/sec
- ERC-20 metadata + wallet balance
- 7 EVM chains
- No credit card
Starter
€13.00 /month
- 100,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 100,000 calls/month
- 8 req/sec
- Name, symbol, decimals, total supply
- Email support
Pro
€31.00 /month
- 520,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 520,000 calls/month
- 15 req/sec
- Wallet, DEX & dashboard pipelines
- Priority support
Scale
€72.00 /month
- 2,600,000 calls / month
- 30 requests / second
- Hard cap (429 above quota, no overage)
- 2,600,000 calls/month
- 30 req/sec
- Portfolio & explorer scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
zkSync Era On-Chain API
Live zkSync Era on-chain data as an API, built on the open Blockscout explorer. zkSync Era (chain id 324) is a leading Ethereum zk-rollup Layer-2 by Matter Labs; its native currency is ETH and fees are a fraction of mainnet. Pull network stats (total blocks and transactions, ETH price, live gas), a gas oracle with slow, average and fast prices in gwei, the most recent blocks and full block detail by height or hash. Look up any address for its balance and contract status, any transaction by hash for its value, fee, status, sender and receiver, and any ERC-20 token by contract for its name, symbol, decimals, holders and USD rate. A universal search resolves addresses, tokens, blocks and transactions in one call. Real on-chain data, no key needed upstream. Ideal for zkSync wallets, block explorers, gas trackers, DeFi dashboards and on-chain analytics.
api.oanor.com/zksync-api
Celo On-Chain API
Live Celo on-chain data as an API, built on the open Blockscout explorer. Celo (chain id 42220) is a mobile-first, carbon-negative Ethereum-compatible network; its native currency is CELO and it hosts native stablecoins such as cUSD and cEUR. Pull network stats (total blocks and transactions, CELO price, live gas), a gas oracle with slow, average and fast prices in gwei, the most recent blocks and full block detail by height or hash. Look up any address for its balance and contract status, any transaction by hash for its value, fee, status, sender and receiver, and any ERC-20 token by contract for its name, symbol, decimals, holders and USD rate. A universal search resolves addresses, tokens, blocks and transactions in one call. Real on-chain data, no key needed upstream. Ideal for Celo wallets, block explorers, gas trackers, DeFi and stablecoin dashboards and on-chain analytics.
api.oanor.com/celo-api
Polygon (MATIC) On-Chain API
Live Polygon PoS on-chain data as an API, built on the open Blockscout explorer. Polygon (chain id 137) is one of the most-used Ethereum-compatible networks; its native currency is POL (formerly MATIC) and fees are tiny. Pull network stats (total blocks and transactions, POL price, live gas), a gas oracle with slow, average and fast prices in gwei, the most recent blocks and full block detail by height or hash. Look up any address for its POL balance and contract status, any transaction by hash for its value, fee, status, sender and receiver, and any ERC-20 token by contract for its name, symbol, decimals, holders and USD rate. A universal search resolves addresses, tokens, blocks and transactions in one call. Real on-chain data, no key needed upstream. Ideal for Polygon wallets, block explorers, gas trackers, DeFi and NFT dashboards and on-chain analytics.
api.oanor.com/matic-api
Gnosis Chain On-Chain API
Live Gnosis Chain on-chain data as an API, built on the open Blockscout explorer. Gnosis Chain (chain id 100, formerly xDAI) is a long-running Ethereum-compatible network whose native currency is the xDAI stable token, so gas and balances are denominated in a dollar-pegged coin. Pull network stats (total blocks and transactions, native price, live gas), a gas oracle with slow, average and fast prices in gwei, the most recent blocks and full block detail by height or hash. Look up any address for its balance and contract status, any transaction by hash for its value, fee, status, sender and receiver, and any ERC-20 token by contract for its name, symbol, decimals, holders and USD rate. A universal search resolves addresses, tokens, blocks and transactions in one call. Real on-chain data, no key needed upstream. Ideal for Gnosis wallets, block explorers, gas trackers, DeFi dashboards and on-chain analytics.
api.oanor.com/gnosis-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for ERC-20 Token Info API?
What's the rate limit for ERC-20 Token Info API?
How much does ERC-20 Token Info API cost?
Can I cancel my subscription anytime?
Is ERC-20 Token Info API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/tokeninfo-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/tokeninfo-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/tokeninfo-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/tokeninfo-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.