API comparison

GoldRush vs Zerion API

Decoded data across 100+ chains vs wallet and portfolio API.

Zerion API is a unified wallet and portfolio data API: balances, DeFi positions, NFTs, transactions, and PnL across 40+ EVM chains and Solana. GoldRush is a decoded multichain data API across 100+ chains including Bitcoin, with JSON-RPC and OHLCV/DEX analytics. Both are REST data APIs with native x402.

Verify current details on Zerion API.

Broader coverage, incl. BitcoinOHLCV and DEX analytics
GoldRushvs Zerion API
Chain coverage100+ chainsvs 40+ EVM + Solana
Bitcoin supportYesvs No
OHLCV & DEX analyticsBuilt invs Price charts only

Why teams choose GoldRush over Zerion API

The differences that matter when you're shipping multichain data, drawn from each product's public docs and pricing.

Broader coverage, incl. Bitcoin

Decoded data across 100+ chains including Bitcoin, which Zerion does not support. Zerion covers 40+ EVM chains and Solana.

OHLCV and DEX analytics

Full OHLCV candles and DEX pair analytics. Zerion's charts are price-only timeseries, and it does not offer DEX analytics.

JSON-RPC included

GoldRush serves JSON-RPC on 30+ EVM chains. Zerion is a REST data API only, with no node service.

x402 on both

Both ship x402 pay-per-request. GoldRush pairs it with wider chain coverage and onchain analytics.

Best for

GoldRush

Apps that need broad chain coverage (100+ including Bitcoin), JSON-RPC, and OHLCV/DEX analytics alongside wallet data.

Zerion API

Apps focused on wallet portfolios and DeFi positions with first-class PnL across EVM chains and Solana.

Feature comparison

Data sourced from public documentation.

FeatureGoldRushZerion API
Chain coverage100+40+ EVM + Solana
Decoded wallet balances / positions
Yes
Yes
NFT API
Zerion: EVM (Solana coming)
Yes
Yes
Wallet transaction history (decoded)
Yes
Yes
Token prices
Yes
Yes
OHLCV
Zerion: price-only charts
Yes
No
Wallet PnL endpoint
Zerion has first-class PnL
Limited
Yes
DEX / onchain analytics
Yes
No
JSON-RPC included
Yes
No
Real-time streamingGraphQL subscriptionsWebhooks + WebSocket
x402 pay-per-request
Zerion: ~$0.01/req on Base
Yes
Yes
Bitcoin support
Yes
No

Pricing

Current rates as published by each provider.

GoldRush

  • 14-day trial (100k credits, 5 req/s, no card)$0/mo
  • Vibe Coding$10/mo
  • Professional$250/mo
  • Inner Circle (Enterprise SLA)Custom
  • x402 (No signup, autonomous agents)Pay-per-request

Zerion API

  • Free (~3,000 requests/day)$0
  • Developer (up to 1M requests)Starting around $499/mo
  • Growth / EnterpriseCustom

Pricing details sourced from Zerion API. Verify on their site for current rates.

Code: Get a wallet's token balances and positions

Same task, both APIs. Read top to bottom to see request shape and how much data each call returns.

GoldRush
// GoldRush, wallet balances on any chain
const res = await fetch(
  "https://api.covalenthq.com/v1/eth-mainnet/" +
  "address/vitalik.eth/balances_v2/",
  { headers: { Authorization: "Bearer " + process.env.GOLDRUSH_API_KEY } }
);
const { data } = await res.json();
console.log(data.items);
Zerion API
// Zerion: wallet positions (API key as HTTP Basic username)
const auth = Buffer.from(process.env.ZERION_API_KEY + ":").toString("base64");
const res = await fetch(
  "https://api.zerion.io/v1/wallets/" +
  "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/positions/?currency=usd",
  { headers: { Authorization: "Basic " + auth } }
);
const { data } = await res.json();

Frequently asked questions

Zerion API is excellent for wallet portfolios and DeFi positions across 40+ EVM chains and Solana, with first-class PnL. GoldRush covers 100+ chains including Bitcoin, adds JSON-RPC and OHLCV/DEX analytics, and is a broader decoded-data API. Both are REST with native x402.

Switching from Zerion API?

Get a free GoldRush API key and make your first decoded multichain call in a couple of minutes. No card required.

Get Started

Get started with GoldRush API in minutes. Sign up for a free API key and start building.

Support

Explore multiple support options! From FAQs for self-help to real-time interactions on Discord.

Contact Sales

Interested in our professional or enterprise plans? Contact our sales team to learn more.