Skip to main content

Documentation Index

Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Solana delivers 400ms block times and sub-cent transaction fees, making it the chain of choice for high-frequency trading, gaming, and consumer applications at scale.
GoldRush offers the most comprehensive Solana Data API suite for developers, analysts, and enterprises. Whether you’re building a DeFi dashboard, a wallet, a trading bot, an AI agent or a compliance platform, our Solana Data APIs provide fast, accurate, and developer-friendly access to the essential onchain data you need.

Supported APIs

https://mintcdn.com/goldrush/HCWRKGncxpy71D8p/images/icons/foundational.svg?fit=max&auto=format&n=HCWRKGncxpy71D8p&q=85&s=8a0b97060449218c1b477fe1fffc8a92

Foundational API

Access structured spot data such as token balances.Use cases: Wallets, portfolio trackers
https://mintcdn.com/goldrush/HCWRKGncxpy71D8p/images/icons/streaming.svg?fit=max&auto=format&n=HCWRKGncxpy71D8p&q=85&s=c4a22e003bde989c0cd2d01a67bd6adf

Streaming API

Subscribe to real-time blockchain events with sub-second latency using GraphQL over WebSockets. Track token transfers, DEX activity, wallet movements, and OHLCV candlestick data across fast chains like Base and Solana.

Use cases: Trading bots & dashboards, gaming, and AI Agents.
https://mintcdn.com/goldrush/HCWRKGncxpy71D8p/images/icons/pipeline.svg?fit=max&auto=format&n=HCWRKGncxpy71D8p&q=85&s=f0027120a50c03e5660514e94a26cabb

Pipeline API

Stream blockchain data directly to your own infrastructure. Push decoded blocks, transactions, event logs, and protocol-specific data into your database, warehouse, queue, or webhook with ABI decoding and SQL transforms built in.

Use cases: Data warehousing, analytics dashboards, ETL pipelines, and backend indexing.

Mainnet

PropertyValue
Chain Namesolana-mainnet (Foundational API) / SOLANA_MAINNET (Streaming API)
Chain ID1399811149
Network TypeFrontier Chain
Support Levelfrontier
Block ExplorerExplorer
Official WebsiteSolana Website
Native Gas TokenSOL

API Usage

To use this blockchain network in GoldRush API calls, use:

Chain Name

  • solana-mainnet / SOLANA_MAINNET (mainnet)

Example API Calls

curl -X GET "https://api.covalenthq.com/v1/solana-mainnet/address/4ZJhPQAgUseCsWhKvJLTmmRRUV74fdoTpQLNfKoekbPY/balances_v2/?key=API_KEY"

SDK Usage

import { GoldRushClient } from "@covalenthq/client-sdk";

const client = new GoldRushClient("API_KEY");
const resp = await client.BalanceService.getTokenBalancesForWalletAddress({
    chainName: "solana-mainnet",
    walletAddress: "4ZJhPQAgUseCsWhKvJLTmmRRUV74fdoTpQLNfKoekbPY"
});

Foundational API Support

This chain supports 1 GoldRush Foundational API:

Wallet API

Streaming API Support

This chain supports 6 GoldRush Streaming APIs:

Pipeline API Support

This chain supports 2 GoldRush Pipeline API data objects that can be streamed to your infrastructure:

Additional Resources