# Suverse Smart Money Net Outflow Tracker

> Suverse Smart Money Net Outflow Tracker is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Returns tokens with the largest smart-money net USD outflow over 30 days, including buy/sell/net volumes, unique trader counts, and smart-money scores, filtered by chain.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/smart-money-distribution
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-smart-money-net-outflow-tracker-782c459e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hrnblCFFxxvNCOW5B4lK6

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 suverse-smart-money-net-outflow-tracker-782c459e -d '<json body>'
```

Example prompt: Show me the top 25 tokens with the biggest smart-money net outflows on Solana over the last 30 days — I want to see the buy/sell/net USD amounts, unique trader counts, and their smart-money scores.

## When to prefer this

Use this endpoint when you need proprietary smart-money outflow rankings for Base or Solana tokens backed by in-house wallet-tracking data. Prefer it over generic volume APIs when the specific goal is identifying which tokens sophisticated/whale wallets are net-selling, not just overall market volume. Best suited for risk screening, exit signal detection, and contrarian research workflows.

## Known failure modes

- Invalid chain value (only 'base' or 'solana' accepted) returns an error
- Limit exceeding 100 may be rejected or clamped
- Missing required body fields returns a 400 error
- Payment failure or insufficient USDC balance returns 402
- Stale data if tracker pipeline is delayed
- No tokens returned if chain has insufficient smart-money activity

## How this service works

Tokens with the biggest smart-money net OUTFLOW (30d) from our tracker: buy/sell/net USD, unique traders, smart-money score, symbol. chain=base|solana, limit<=100. In-house data.

## Output

A ranked list of up to 100 tokens sorted by smart-money net outflow (30-day), each entry containing the token symbol, total buy volume in USD, total sell volume in USD, net USD flow (negative = net outflow), number of unique smart-money traders, and a proprietary smart-money score. Data is sourced from Suverse's in-house tracker for either the Base or Solana blockchain.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-smart-money-net-outflow-tracker-782c459e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
