# MadeOnSol Wallet Universal Stats & Cross-Product Flags

> MadeOnSol Wallet Universal Stats & Cross-Product Flags is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns universal wallet statistics and cross-product classification flags (is_kol, is_alpha_tracked, is_deployer) for a given Solana wallet address

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/wallet/2FxiPRPLYX3H84FZkdRiUHDgDm4U5u98etbL4yvZ3qRq
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-wallet-universal-stats-cross-product-flags-3d4e32d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LwuQXQNt93XITM4JLy6py

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 madeonsol-wallet-universal-stats-cross-product-flags-3d4e32d4
```

Example prompt: Can you pull up the full wallet stats and cross-product flags for the Solana address 2FxiPRPLYX3H84FZkdRiUHDgDm4U5u98etbL4yvZ3qRq — specifically tell me if it's flagged as a KOL, alpha-tracked, or a deployer?

## When to prefer this

Use this endpoint when you need a comprehensive, single-call profile of a Solana wallet that includes both aggregate stats and categorical classification flags (KOL, alpha-tracked, deployer). Prefer this over the PnL or open-positions endpoints when you want identity/reputation signals rather than financial performance data. Ideal for agent workflows that need to triage or filter wallets by type before deeper analysis.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error
- Wallet address not found or never on-chain returns empty/null stats
- Payment failure or insufficient USDC balance (x402) blocks the request
- Rate limiting if too many requests in succession
- Network timeout if Solana RPC data is slow to resolve

## How this service works

Returns on-chain wallet analytics for a Solana address, including trade stats, alpha flags, and behavioral labels like KOL, sniper, and deployer status.

## Output

A JSON object containing universal wallet statistics for the given Solana address, plus boolean cross-product classification flags: is_kol (key opinion leader), is_alpha_tracked (tracked for alpha signals), and is_deployer (contract/token deployer). Likely also includes aggregated activity metrics shared across madeonsol products.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Solana wallet address (base58)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-wallet-universal-stats-cross-product-flags-3d4e32d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from madeonsol.com](https://www.zero.xyz/host/madeonsol.com/llms.txt)
