API comparison

GoldRush vs Allium

Self-serve decoded-data API vs enterprise data infrastructure.

Allium is enterprise, institutional-grade blockchain data infrastructure: warehouse data shares, low-latency streams, and developer APIs trusted by companies like Coinbase, Visa, and Uniswap. It is sales-led, with no public pricing or free tier. GoldRush is a self-serve decoded-data API with transparent flat-credit pricing and a free tier. Both support x402.

Verify current details on Allium.

Self-serve with a free tierJSON-RPC included
GoldRushvs Allium
OnboardingInstant API keyvs Request a trial
PricingSelf-serve + free tiervs Sales-led, no public pricing
JSON-RPC30+ EVMvs None

Why teams choose GoldRush over Allium

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

Self-serve with a free tier

Sign up and get a key with transparent flat-credit pricing. Allium is enterprise and sales-led, with no public pricing or free tier.

JSON-RPC included

GoldRush serves JSON-RPC on 30+ EVM chains. Allium is data infrastructure, not an RPC node provider.

One unified call

Balances, transactions, NFTs, and prices return from a single GoldRush REST call. Allium splits these across separate balances, transactions, NFT, and prices endpoints.

x402 on decoded data

Both providers ship x402. GoldRush pairs it with self-serve onboarding so an agent can start without a sales process.

Best for

GoldRush

Developers and teams that want self-serve, transparent pricing and a free tier to ship decoded multichain data fast.

Allium

Enterprises that need audit-grade data delivered into their own warehouse (Snowflake, BigQuery, Databricks) and low-latency event streams.

Feature comparison

Data sourced from public documentation.

FeatureGoldRushAllium
Chain coverage100+150+ warehouse, 20+ realtime APIs
Decoded wallet balances API
Yes
Yes
NFT API
Yes
Yes
Token prices and OHLCV
Allium builds OHLC/VWAP
Yes
Yes
Historical balances at any block
Yes
Yes
DEX / onchain analytics
Yes
Yes
JSON-RPC included
Yes
No
Real-time streamingGraphQL subscriptionsKafka / PubSub / SNS streams
Warehouse data shares
Allium's core strength
No
Yes
x402 pay-per-request
Allium via AgentHub
Yes
Yes
Bitcoin support
Yes
Yes
Self-serve signup + free tier
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

Allium

  • TrialBy request
  • Enterprise (Sales-led; no public pricing or free tier)Custom

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

Code: Get token balances for a wallet on Ethereum

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);
Allium
// Allium: developer wallet balances (enterprise API key)
const res = await fetch(
  "https://api.allium.so/api/v1/developer/wallet/balances",
  {
    method: "POST",
    headers: {
      "X-API-KEY": process.env.ALLIUM_KEY,
      "Content-Type": "application/json",
    },
    body: JSON.stringify([
      { chain: "ethereum", address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" },
    ]),
  }
);

Frequently asked questions

Yes. Allium positions itself as institutional, audit-grade data infrastructure used by companies like Coinbase, Visa, and Uniswap, delivered into your data warehouse or via developer APIs. It is sales-led with no public pricing or free tier. GoldRush is self-serve with transparent flat-credit pricing and a free tier.

Switching from Allium?

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.