# Suverse Smart Money Token Rankings

> Suverse Smart Money Token Rankings 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 ranked by smart-money score (30-day) with buy/sell/net USD flow, unique smart trader count, momentum rank, and symbol for Base or Solana chains.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/smart-money-token-rankings
- 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-token-rankings-9914c217
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VSFkjjzpCaKr8Wfp4vcJY

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-token-rankings-9914c217 -d '<json body>'
```

Example prompt: Show me the top 10 tokens ranked by smart-money score on Solana right now, including their buy/sell flow and how many unique smart traders are involved.

## When to prefer this

Choose this endpoint when you need proprietary smart-money flow and scoring data for token rankings on Base or Solana, specifically wanting to identify which tokens sophisticated on-chain traders are actively buying or selling over the past 30 days. Prefer this over generic DEX volume APIs when the goal is to surface conviction signals from smart wallets rather than raw trading volume.

## Known failure modes

- Invalid or unsupported chain value (must be 'base' or 'solana')
- limit exceeds 100 — request rejected
- Payment not fulfilled (x402 payment required at $0.05 USDC per call)
- No data available for the specified chain at the time of request
- Malformed request body or missing required fields

## How this service works

Tokens ranked by smart-money score (30d) from our tracker: buy/sell/net USD flow, unique smart traders, smart-money score, momentum rank, symbol. chain=base|solana, limit<=100. In-house data, not a third-party proxy.

## Output

Returns a ranked list of up to 100 tokens with: token symbol, 30-day buy/sell/net USD flow from smart wallets, count of unique smart traders, smart-money score, and momentum rank — all sourced from Suverse's proprietary in-house tracker.

## 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-token-rankings-9914c217/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)
