# MadeOnSol Token Buyer Quality Score

> MadeOnSol Token Buyer Quality Score is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns an early-buyer quality score for a Solana token, including dump-cluster exposure, recycled-wallet rate, and smart-money presence, with a live Signal Scorecard efficacy overlay

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/tokens/49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump/buyer-quality
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-token-buyer-quality-score-fb7a16cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R6PdXrYdlYJYZaBdFYvpK

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-token-buyer-quality-score-fb7a16cd
```

Example prompt: What's the buyer quality score for Solana token 49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump — I want to know the dump-cluster exposure, recycled-wallet rate, and whether any smart money is in early.

## When to prefer this

Use this endpoint when you need to evaluate the quality of early buyers for a specific Solana token, particularly to detect dump-cluster wallets, recycled/sybil wallets, or smart-money presence before or after entering a position. Prefer this over a generic token safety score when the concern is buyer cohort quality rather than contract-level rug risk. The attached Signal Scorecard efficacy makes this especially useful for traders who want to know how reliable the underlying signals actually are in out-of-sample testing.

## Known failure modes

- Token mint address not found or invalid — 404 or empty response
- Token too new with insufficient on-chain buyer data — partial or null score fields
- Payment not completed via x402 — 402 Payment Required
- Rate limit or server error — 5xx response
- Token has no tracked early buyers — zero-sample edge case returning null scores

## How this service works

Analyzes a Solana token mint’s buyer quality and related on-chain signals. Returns a compact risk-style score, confidence, signal, and breakdown metrics for the requested mint.

## Output

Returns a structured buyer quality scorecard for the specified Solana token, including: an overall early-buyer quality score (0–100), dump-cluster exposure percentage, recycled-wallet rate, smart-money presence indicators, and a live Signal Scorecard efficacy attachment showing out-of-sample reliability metrics for the signals used.

## 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": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint (base58)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "description": "JSON payload — full field reference at https://madeonsol.com/x402",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-token-buyer-quality-score-fb7a16cd/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)
