# 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 plus 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/CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o
- 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-14b2dc2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OqBK-ss2oSlEs_PC4ZH2B

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-14b2dc2d
```

Example prompt: Pull the universal wallet stats and classification flags for Solana wallet CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o — 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 quick, unified profile of a Solana wallet that combines general stats with high-signal classification flags (KOL, alpha-tracked, deployer) in a single call — especially useful for due diligence on a new wallet before deeper PnL or position analysis.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error
- Wallet address not found or has no on-chain activity may return empty stats
- Payment failure (x402 micropayment not completed) results in 402 response
- Network or upstream data unavailability may cause timeout or 503

## How this service works

Universal wallet stats + cross-product flags (is_kol / is_alpha_tracked / is_deployer)

## Output

Returns universal stats for the wallet plus boolean cross-product classification flags: is_kol (key opinion leader), is_alpha_tracked (monitored alpha wallet), and is_deployer (token deployer), along with any supporting metrics.

## 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-14b2dc2d/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)
