API comparison

GoldRush vs CoinGecko API

Onchain wallet and decoded data vs market and price data.

CoinGecko is the leading crypto market-data API: token prices, market data, and onchain DEX pool data via GeckoTerminal. It is not a wallet or onchain decoded-data API. GoldRush returns a wallet's balances, NFTs, and decoded transactions across 100+ chains. The two are complementary: CoinGecko for market and price reference, GoldRush for address-level onchain data.

Verify current details on CoinGecko API.

Address-level onchain dataDecoded transaction history
GoldRushvs CoinGecko API
Wallet balancesBuilt invs Not offered
Wallet transaction historyDecodedvs Not offered
Wallet NFT holdingsBuilt invs Market data only

Why teams choose GoldRush over CoinGecko API

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

Address-level onchain data

GoldRush returns a wallet's balances, NFTs, and decoded transactions. CoinGecko is market and price data and does not return onchain data for a given address.

Decoded transaction history

Full, human-readable per-wallet activity across 100+ chains. CoinGecko has no wallet-transaction endpoint.

Data and prices in one API

GoldRush pairs wallet data with token prices and OHLCV. With CoinGecko you would combine it with a separate onchain provider.

Real-time streaming

GoldRush offers GraphQL subscriptions. CoinGecko refreshes on a 2-3s polling/cache model with no websockets.

Best for

GoldRush

Apps that need a wallet's onchain data: balances, NFTs, and decoded transaction history across 100+ chains.

CoinGecko API

Apps that need broad market and price data, coin market caps, and onchain DEX pool data.

Feature comparison

Data sourced from public documentation.

FeatureGoldRushCoinGecko API
Coverage100+ chains (onchain data)17,000+ coins; 200+ DEX networks
Wallet token balances
Yes
No
Wallet NFT holdings
CoinGecko has NFT market data, not per-wallet holdings
Yes
No
Wallet transaction history (decoded)
Yes
No
Token prices
CoinGecko's core strength
Yes
Yes
OHLCV
CoinGecko: pool OHLCV via GeckoTerminal
Yes
Yes
Onchain DEX pool data
Yes
Yes
Real-time streamingGraphQL subscriptionsPolling (2-3s), no websockets
x402 pay-per-request
CoinGecko: ~$0.01 per request
Yes
Yes
Free tier100k credits/moDemo: 10k calls/mo

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

CoinGecko API

  • Demo (10k calls/mo)$0
  • BasicStarting around $35/mo
  • AnalystStarting around $129/mo
  • LiteStarting around $499/mo
  • x402 (No key)~$0.01/request
  • EnterpriseCustom

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

Code: Get the current USD price of a token

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

GoldRush
// GoldRush: spot price for a token address
const res = await fetch(
  "https://api.covalenthq.com/v1/pricing/historical_by_addresses_v2/" +
  "eth-mainnet/USD/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/",
  { headers: { Authorization: "Bearer " + process.env.GOLDRUSH_API_KEY } }
);
const { data } = await res.json();
CoinGecko API
// CoinGecko: simple token price by id
const res = await fetch(
  "https://api.coingecko.com/api/v3/simple/price" +
  "?ids=usd-coin&vs_currencies=usd",
  { headers: { "x-cg-demo-api-key": process.env.COINGECKO_KEY } }
);
const data = await res.json();

Frequently asked questions

Only partly. CoinGecko is the leading market and price-data API (token prices, market caps, onchain DEX pool data). It does not return a wallet's onchain balances, NFTs, or transaction history. GoldRush is built for that address-level decoded data. Many apps use both.

Switching from CoinGecko 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.