# Suverse Smart Money Netflow Analytics

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

Returns aggregated buy/sell USD netflows from profitable Solana wallets for a given token, score-weighted, across 1h/24h/7d/30d windows with Pump.fun and meme token coverage

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/smart-money-netflow
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-smart-money-netflow-analytics-b5a22015
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2L5lIfik_zvYD5Ky8673n

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-netflow-analytics-b5a22015 -d '<json body>'
```

Example prompt: Pull smart money netflow data for the Solana token at mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — show me the score-weighted buy and sell USD aggregates for the last 24 hours and 7 days, including any Pump.fun activity.

## When to prefer this

Use this endpoint when you need on-chain Solana smart money flow analytics for a specific token, especially for Pump.fun or meme tokens, and need score-weighted buy/sell aggregates across multiple time windows. Prefer this over generic price feeds when you want to understand what profitable traders are actually doing, not just price movement.

## Known failure modes

- Invalid or unrecognized Solana token mint address returns an error or empty result
- Unsupported time window value returns a validation error
- Token has no smart money wallet activity in the requested window returns zero/empty flows
- Network or upstream data provider outage returns a 5xx error
- Malformed POST body or missing required fields returns a 400 bad request

## How this service works

Solana smart-money wallet flow analytics — aggregated netflows from profitable on-chain Solana traders. Per-token buy/sell USD, score-weighted, 1h/24h/7d/30d windows. Pump.fun + meme coverage. $0.02/call. Keywords: solana, netflow, pump.fun, wallet-tracking.

## Output

Returns aggregated USD buy and sell netflows from profitable, score-weighted Solana wallets for the specified token across the requested time windows (1h/24h/7d/30d), including Pump.fun and meme token coverage.

## Example request

```json
{
 "mint_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
 "time_windows": [
  "24h",
  "7d"
 ],
 "include_pump_fun": true
}
```

## 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-netflow-analytics-b5a22015/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)
