> For the complete documentation index, see [llms.txt](https://ottodata.gitbook.io/ottodata-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ottodata.gitbook.io/ottodata-docs/concepts/whale-flows.md).

# Whale flows

## Whale flows

### What Otto tracks

Otto scans every ERC-20 `Transfer` log on Robinhood Chain for the **32 tracked stock tokens plus USDG**, keeps transfers above a USD threshold (currently $5,000, priced via Chainlink), and classifies each one:

| Direction  | Meaning                                                                                                                                          |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `mint`     | From the zero address — **new tokens issued**. For stock tokens this means tokenized supply increased (someone deposited shares / cash to mint). |
| `burn`     | To the zero address — **tokens redeemed**, supply decreased.                                                                                     |
| `transfer` | Wallet-to-wallet movement above the threshold.                                                                                                   |

```json
{
  "tx_hash": "0x33fbadee8f4b…",
  "ts": 1784189916,
  "ticker": "USDG",
  "from_addr": "0xd125e04f…",
  "to_addr": "0x52e65b17…",
  "amount": 23395.87,
  "amount_usd": 23395.87,
  "direction": "transfer"
}
```

### Why mints and burns matter most

Tokenized stock supply is elastic: authorized issuers mint when demand exceeds supply and burn on redemptions. Sustained net minting of a ticker is a direct, on-chain read of demand for that stock's tokenized form — visible hours before it shows up anywhere else.

The [flow summary](https://ottodata.gitbook.io/ottodata-docs/api-reference/flows) aggregates this per ticker: transfer counts, total USD volume, mint USD vs burn USD (net supply change), and the single largest transfer in the window.

### Reading the data

* Raw feed: [`GET /v1/flows`](https://ottodata.gitbook.io/ottodata-docs/api-reference/flows) — filter by ticker, direction, USD floor, time window
* Aggregates: [`GET /v1/flows/summary`](https://ottodata.gitbook.io/ottodata-docs/api-reference/flows)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ottodata.gitbook.io/ottodata-docs/concepts/whale-flows.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
