Migrating from Sim APIs (Sim by Dune) to Moralis
The Sim APIs (
sim.dune.com) are being sunset on August 1, 2026. New signups for Sim APIs were disabled on May 18, 2026. Any production workload backed by the Sim APIs needs a replacement read layer before the cutoff — this page maps the Sim APIs surface to Moralis endpoint-by-endpoint so the swap is a search-and-replace in most cases.Quick reference: Sim APIs → Moralis
EVM — Account data
EVM — Token data
EVM — DeFi
Real-time — Webhooks → Streams
Moralis Streams covers the same delivery model (HTTP webhooks with retries, signature verification, and address management) and adds richer filtering — contract events by ABI, smart-filter expressions, internal-tx visibility, and per-chain throughput tuning.
Solana (SVM)
Sim APIs endpoint details
Each section below shows the Sim APIs endpoint, the Moralis URL(s) that replace it broken out by chain, and a runnable example.Wallet activity
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/activity/{address}
Token balances
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/balances/{address}
Transactions
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/transactions/{address}
NFTs / collectibles
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/collectibles/{address}
Token info / metadata
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/token-info/{address}
Token holders
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/token-holders/{address}
Search tokens
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/token-search
DeFi positions
Sim APIs Endpoint:https://api.sim.dune.com/v1/evm/defi/positions/{address}
Real-time webhooks → Moralis Streams
Sim APIs Endpoint:POST/PUT/DELETE https://api.sim.dune.com/v1/webhooks/...
Solana balances and activity
Sim APIs Endpoint:https://api.sim.dune.com/v1/svm/balances/{address} and https://api.sim.dune.com/v1/svm/transactions/{address}
Chain coverage
The Sim APIs cover 60+ EVM chains plus Solana. Moralis covers a comparable footprint across EVM, Solana, and Bitcoin. The full list is on Supported Chains — if you’re migrating off the Sim APIs, do a one-time diff against the chains you’ve configured in Sim and flag any gaps before cutover.Sim APIs migration checklist
- Get an API key — Get your API key.
- Map your call sites — replace each Sim APIs endpoint with the equivalent above. Field names differ; most teams write a thin response adapter rather than threading new shapes through the codebase.
- Move Sim APIs webhooks to Streams — create one Stream per event class (activity, ERC20 transfers, contract events) and attach addresses dynamically instead of one webhook per address.
- Verify chain coverage — diff your Sim APIs chain configuration against Supported Chains.
- Cut over before August 1, 2026 — the Sim APIs stop serving on that date.
Beyond the Sim APIs: what Moralis adds
The Sim APIs surface maps cleanly onto Moralis, but Moralis also exposes endpoints that don’t have a Sim APIs counterpart and that are commonly used by teams once they migrate:- Wallet PnL — realized and unrealized PnL per wallet with token-level breakdown. See Wallet PnL Summary and Wallet PnL by Token.
- Wallet Stats & Insights — first/last activity, chain-level activity rollups, and behavioral signals. See Wallet Stats and Wallet Insights.
- Token approvals — open ERC20 approvals for a wallet, used widely in revoke flows. See Wallet Approvals.
- Token discovery — Trending Tokens.
- OHLCV & pair stats — candle data and DEX pair analytics. See Get OHLCV by Pair Address.
- Cross-chain balances in one call — see Cross-Chain Token Balances.

