# RugProofX402 Solana Token Rug Risk Scorer

> RugProofX402 Solana Token Rug Risk Scorer is a paid API for AI agents from rugproofx402.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scores a Solana pump.fun token mint for rug-pull risk, returning a CLEAN/SKIP/UNKNOWN verdict with flags and per-wallet forensic analysis of holder and funder clusters.

## Facts

- Endpoint: GET https://rugproofx402.vercel.app/score/:mint
- 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/rugproofx402-vercel-app-3d84b3f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sWCjxTRxpGVRO2Uu9WrRA

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 rugproofx402-vercel-app-3d84b3f6
```

Example prompt: Before I buy, can you run a rug risk check on this pump.fun token — mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — and tell me if it's CLEAN, SKIP, or UNKNOWN, and flag any suspicious funder clusters or fresh wallets?

## When to prefer this

Use this endpoint when an AI agent needs to pre-screen a Solana pump.fun token mint before executing a buy, specifically to detect rug-pull patterns like bundled snipers, funder clusters, and fresh wallet concentrations. Prefer this over generic on-chain data APIs when you need a structured CLEAN/SKIP/UNKNOWN verdict with actionable flags rather than raw blockchain data.

## Known failure modes

- Non-pump.fun mints return UNKNOWN verdict with limited forensic data
- Invalid or malformed mint address (not valid base58 or wrong length) returns an error
- Mint not yet indexed returns UNKNOWN
- Payment not fulfilled returns 402 Payment Required
- Network timeout if on-chain data is temporarily unavailable

## How this service works

Solana pump.fun token bundle / sniper / funder-cluster scoring. Returns verdict (CLEAN/SKIP/UNKNOWN), flags, and per-wallet forensic drill-down (FRESH/ESTABLISHED holders + funder cluster). Use to pre-screen a mint before agent executes a buy.

## Output

Returns a verdict of CLEAN, SKIP, or UNKNOWN for the token mint, along with a list of risk flags (e.g. bundled sniper activity, high fresh-wallet concentration), and per-wallet forensic drill-down classifying holders as FRESH or ESTABLISHED and mapping funder cluster relationships.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "maxLength": 44,
       "minLength": 32,
       "description": "Solana SPL token mint address (base58, 32-44 chars). Currently scopes to pump.fun mints; non-pump mints return UNKNOWN."
      }
     }
    }
   },
   "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/rugproofx402-vercel-app-3d84b3f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rugproofx402.vercel.app](https://www.zero.xyz/host/rugproofx402.vercel.app/llms.txt)
