# HoodGrow Whale Trades Feed

> HoodGrow Whale Trades Feed is a paid API for AI agents from www.hoodgrow.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns the most recent large (whale) trades in Robinhood Chain stock-token Uniswap V3 pools, including side (buy/sell), USD size, and transaction hash, with optional filtering by token symbol.

## Facts

- Endpoint: GET https://www.hoodgrow.com/api/agent/trades
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hoodgrow-whale-trades-feed-f18b63af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CuN_yqBNShLyY-G0RMskc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability hoodgrow-whale-trades-feed-f18b63af
```

Example prompt: Show me the most recent whale trades happening in Robinhood Chain stock-token Uniswap V3 pools — I want to see the buy/sell side, USD size, and transaction hash for each big trade, and filter it down to just TSLA if possible.

## When to prefer this

Use this endpoint when you need real-time visibility into large-volume trades (whale activity) specifically within Robinhood Chain's tokenized equity Uniswap V3 pools. Prefer this over generic DEX analytics when you need structured, agent-friendly data about stock-token trades with USD sizing and transaction hashes, especially with per-symbol filtering.

## Known failure modes

- No trades found for the specified symbol — token may not exist or have no recent whale activity
- Invalid or unrecognized symbol parameter returns empty results or an error
- Payment failure (x402) if USDC payment is not properly handled
- Rate limiting or temporary service unavailability
- Network timeout if Robinhood Chain RPC is slow

## How this service works

HoodGrow — recent large (whale) trades in Robinhood Chain stock-token Uniswap V3 pools: side (buy/sell), USD size, and transaction hash, newest first. Filter to a single token with ?symbol=.

## Output

A list of recent large trades in Robinhood Chain stock-token Uniswap V3 pools, ordered newest first. Each entry includes the trade side (buy or sell), the USD value of the trade, and the on-chain transaction hash. Results can be filtered to a single token by symbol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hoodgrow-whale-trades-feed-f18b63af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.hoodgrow.com](https://www.zero.xyz/host/www.hoodgrow.com/llms.txt)
