HOODSTACK

DATA

Data API & Webhooks

Blocks, logs, tokens, transfers, balances — plus event webhooks.

DATA

Skip the indexer you were about to build.

Blocks, logs, token metadata, transfers, and balances through a REST and WebSocket API. Subscribe to the events you care about and get a webhook instead of writing another polling loop.

The problem

Building and running an indexer burns weeks before your product ships.

How HOODSTACK helps

Query indexed data over REST and WebSocket, and subscribe to the events you care about instead of another polling loop.

Snippet

client.ts
import { createPublicClient, http, defineChain } from "viem";

const robinhood = defineChain({
  id: 4663,
  name: "Robinhood Chain",
  nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
  rpcUrls: {
    default: { http: ["https://rpc.mainnet.chain.robinhood.com"] },
  },
  blockExplorers: {
    default: { name: "Blockscout", url: "https://robinhoodchain.blockscout.com" },
  },
});

const client = createPublicClient({
  chain: robinhood,
  transport: http(),
});

console.log(await client.getBlockNumber());
console.log(await client.getChainId()); // 4663

Limits

Data endpoints and webhook delivery are coming soon. // TODO phase 2

Docs overview →

coming soon