# Suverse Smart Money Accumulation

> Suverse Smart Money Accumulation 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-14).

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

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/smart-money-accumulation
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-smart-money-accumulation-49f40787
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kHI_DXeLxyCOZkFVZjFd5

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-accumulation-49f40787 -d '<json body>'
```

Example prompt: Show me the top 25 tokens with the biggest smart-money net inflow on Solana over the last 30 days, including their buy/sell volumes and smart-money scores.

## When to prefer this

Choose this endpoint when you need proprietary, in-house smart-money accumulation rankings for Base or Solana tokens based on 30-day net inflow data. It is ideal for identifying which tokens sophisticated or whale wallets are net-buying, surfacing alpha signals for DeFi research or portfolio construction. Prefer this over generic DEX volume APIs when the focus is specifically on smart-wallet behavior rather than total market volume.

## Known failure modes

- Invalid chain value (must be 'base' or 'solana') returns an error
- Limit exceeding 100 may be rejected or clamped
- Payment failure (x402) if USDC balance is insufficient
- Empty result set if no smart-money flow data is available for the selected chain
- Request body missing required fields returns a 400-level error

## How this service works

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

## Output

An ordered list of tokens ranked by 30-day smart-money net inflow, each entry containing the token symbol, total buy volume in USD, total sell volume in USD, net inflow in USD, number of unique smart-money traders, and a proprietary smart-money score. Results are scoped to a single chain (Base or Solana) and limited to at most 100 tokens.

## 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-accumulation-49f40787/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)
