# Robinhood Chain Whale Flow Intelligence

> Robinhood Chain Whale Flow Intelligence is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns real-time whale flow data for a tokenized stock ticker on Robinhood Chain, surfacing large institutional or smart-money trading activity

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/whale-flow
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-whale-flow-intelligence-020610fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__el3SL2u_J-NlCnvLPQGF

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 robinhood-chain-whale-flow-intelligence-020610fb -d '<json body>'
```

Example prompt: Can you check the current whale flow for TSLA on Robinhood Chain? I want to see if any big players are making large moves on the tokenized stock right now.

## When to prefer this

Use this endpoint when you specifically need whale or institutional order flow data for tokenized stocks trading on Robinhood Chain, particularly to confirm smart money direction before entering a position or to detect unusual large-trade activity on tokenized equities. Prefer this over generic price or volume endpoints when the user question is about who (large players, whales, institutions) is moving a tokenized stock, not just what price it is at.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty response
- Payment failure (insufficient USDC balance or wrong chain) blocks the call
- Ticker not listed on Robinhood Chain tokenized market returns no data
- Network or Railway hosting downtime causes timeouts
- Rate limiting if called excessively in rapid succession

## How this service works

Onchain buy/sell pressure for a tokenized stock on Robinhood Chain: buys vs sells, buy % of trades, and average trade size (a whale-vs-retail proxy) across 5m/1h/6h/24h. Send { ticker }. See who is accumulating or dumping the token right now.

## Output

Returns real-time whale flow signals for the specified tokenized stock ticker on Robinhood Chain, including data on large buy/sell orders, institutional-scale trade activity, and smart money directional bias, enabling agents to assess whether significant players are accumulating or distributing the asset.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-whale-flow-intelligence-020610fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
