# MadeOnSol Token Rug Risk Scorer

> MadeOnSol Token Rug Risk Scorer is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a 0–100 safety/rug-risk score with a per-factor breakdown for a given Solana token contract address

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/tokens/49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump/risk
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-token-rug-risk-scorer-9f766a1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nPRvBer2-CWN3geFSPF9f

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-rug-risk-scorer-9f766a1d
```

Example prompt: Can you check the rug risk score for the Solana token 49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump before I buy — I want to see the full factor-by-factor breakdown so I know exactly what's sketchy about it.

## When to prefer this

Use this endpoint when you need a structured, factor-level rug-risk assessment for a specific Solana token before making a buy decision. Prefer this over generic on-chain explorers when you want a single composite safety score plus the reasoning behind it, especially for pump.fun or new memecoin tokens where rug risk is high.

## Known failure modes

- Invalid or non-existent token mint address returns 404 or error response
- Token too new or low-data token may return incomplete factor breakdown
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- Rate limiting or service unavailability returns 5xx error
- Token on a chain other than Solana returns no result

## How this service works

Transparent 0–100 token safety / rug-risk score with a per-factor breakdown — the 'is this safe to buy?' call

## Output

A 0–100 numeric safety/rug-risk score for the queried Solana token, accompanied by a per-factor breakdown explaining which specific signals (e.g. liquidity lock, ownership concentration, deployer history, honeypot indicators) contributed to the score — allowing an agent or user to understand exactly why the token is considered risky or safe.

## 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)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-token-rug-risk-scorer-9f766a1d/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)
