# nad.fun Token Risk/Momentum Decision Engine

> nad.fun Token Risk/Momentum Decision Engine is a paid API for AI agents from roger-tomfoolish-liam.ngrok-free.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a 0-100 risk/momentum score, risk level, recommended action, graduation progress, and momentum analysis for a given nad.fun token on Monad blockchain

## Facts

- Endpoint: GET https://roger-tomfoolish-liam.ngrok-free.dev/v1/decide
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nad-fun-token-risk-momentum-decision-engine-587ee33d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EMmMmJkiMVVPJUuccH_Ty

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 nad-fun-token-risk-momentum-decision-engine-587ee33d
```

Example prompt: Can you give me a full risk and momentum decision report for this nad.fun token on Monad — 0x1234567890abcdef1234567890abcdef12345678 — I want to know the score, whether it's risky, and whether I should buy, hold, or avoid it?

## When to prefer this

Use this endpoint when you need a single consolidated decision signal for a nad.fun token on Monad — combining risk, momentum, and graduation status into one actionable score. Prefer this over the sibling /v1/lite endpoint when you need the full detailed report rather than a lightweight summary, and when you are willing to pay $0.1 USDC per call for the complete analysis.

## Known failure modes

- Missing or invalid token address (not 42-character 0x hex) returns 400 error
- Token not found on nad.fun/Monad returns 404 or empty result
- Upstream Monad RPC unavailability causes 503 or timeout
- Payment not included or insufficient causes 402 Payment Required

## How this service works

Entscheidungsfertiger Risiko-/Momentum-Report fuer einen nad.fun-Token auf Monad: 0-100 Score, riskLevel, action, Graduation, Momentum und erklaerende Faktoren. Free probe (no payment): GET /v1/lite?token=0x...

## Output

Returns a structured report containing a 0-100 composite score, a riskLevel category, an action recommendation (e.g. buy/hold/avoid), graduation progress toward nad.fun bonding curve completion, momentum indicators, and human-readable explanatory factors behind the score.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "nad.fun Token-Adresse auf Monad (0x..., 42 Zeichen)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nad-fun-token-risk-momentum-decision-engine-587ee33d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roger-tomfoolish-liam.ngrok-free.dev](https://www.zero.xyz/host/roger-tomfoolish-liam.ngrok-free.dev/llms.txt)
