Streaming API

Real-time, structured data on blockchain events over WebSockets. No polling. No lag.

Streaming Data. Real-time.

The GoldRush Streaming API provides real-time updates on blockchain events, including token balances, new DEX pairs, wallet activity, and OHLCV price data. This API is ideal for applications that require immediate notifications or updates on blockchain activities. The API is offered via GraphQL endpoints allowing developers to filter for specific chains, or DEXs and to start real-time subscriptions.
section image

Use Cases

Diverse use-cases including Trading bots, Gaming, and AI Agents with sub-second data. No polling. No lag.

Trading BotsPower your bots with new pairs, pair liquidity changes, OHLCV pricing data, and wallet activity to copy trade.

GamingStream inventory balances and onchain game state right into your game engine with no lag or polling.

AI Agents Power your AI Agents with streaming wallet information to build novel co-pilot apps.

Available Streams

Token Balances

Real-time streaming updates on a wallet’s token balances.
section image

New DEX Pairs

Real-time updates on new pairs, pair liquidity changes, and other pair-related events across supported DEXs.
section image

Wallet Activity

Live tracking of wallet transactions, token transfers, and interactions with smart contracts.
section image

OHLCV Price

Continuous price data feed providing Open, High, Low, Close, Volume values for tokens and liquidity pools at configurable intervals.
section image

Integration Made Simple

GoldRush is built by devs, for devs. Integrate quickly using our REST APIs, SDKs and UI Kits.
import { GoldRushClient, StreamingChain } from "@covalenthq/client-sdk";

const StreamingApiServices = async () => {
    const client = new GoldRushClient("<YOUR_API_KEY>");

    // Subscribe to OHLCV data for trading pairs
    client.StreamingService.subscribeToOHLCVPairs(
        {
            chain_name: StreamingChain.BASE_MAINNET,
            pair_addresses: ["0x9c..."],
        },
        {
            next: (data) => console.log("OHLCV data:", data),
        }
    );
};

StreamingApiServices();

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.