# SolEnrich Stonk Reward Risk

> SolEnrich Stonk Reward Risk is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Evaluates the payout status, trading cost, and on-chain health score of a StonkFun reward coin to help size or avoid a position

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/stonk-reward-risk/invoke
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-stonk-reward-risk-56d065ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QXbSPSQ9ikODbtneOnwN-

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 solenrich-stonk-reward-risk-56d065ad -d '<json body>'
```

Example prompt: Before I buy into this StonkFun reward coin, check its payout status and health score on-chain — the mint is 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — and give me the full breakdown including trading cost and holder concentration.

## When to prefer this

Use this endpoint specifically when evaluating a StonkFun reward coin before entering or sizing a position. It is purpose-built for StonkFun's reward-coin mechanics and reads directly from the chain to give you fee structure, payout recency, authority legitimacy, and holder concentration in a single call — far more targeted than a generic Solana token enrichment endpoint.

## Known failure modes

- Invalid or malformed mint address (base58 validation failure)
- Mint not found on-chain (coin may not exist or wrong network)
- Coin is not a StonkFun reward coin (returns NOT_REWARD status)
- RPC or chain read timeout causing incomplete data
- Rate limiting or payment failure for the $0.005 USDC x402 fee

## How this service works

Payout status for a StonkFun reward coin — what a holder observes: PAYING (payout in the last 24h), STALE, NEVER, or NOT_REWARD — plus trading cost (tax bps, round-trip %) and a 0-100 health score read from the chain: fee bps and cap, withdraw authority (must be StonkFun's distributor), fee mutability, distributions and recency, flywheel, holders and concentration, quote category, age. Call before sizing a reward-coin position.

## Output

Returns the coin's payout status (PAYING, STALE, NEVER, or NOT_REWARD), trading cost details (tax basis points, round-trip percentage), and a 0-100 health score derived from on-chain signals including fee bps and cap, withdraw authority legitimacy, fee mutability, distribution count and recency, flywheel activity, holder count and HHI concentration, quote category, and coin age.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "StonkFun coin mint (base58)"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-stonk-reward-risk-56d065ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solenrich.com](https://www.zero.xyz/host/api.solenrich.com/llms.txt)
