# nad.payflowagent.net – nad.fun Token Risk/Momentum Decision Report

> nad.payflowagent.net – nad.fun Token Risk/Momentum Decision Report is a paid API for AI agents from nad.payflowagent.net, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns a 0-100 risk/momentum score, risk level, action recommendation, graduation status, and explanatory factors for a given nad.fun token on the Monad blockchain.

## Facts

- Endpoint: GET https://nad.payflowagent.net/v1/decide
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nad-payflowagent-net-nad-fun-token-risk-momentum-decision-report-7cab1104
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NBokmoLveC43dn-F6xn15

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-payflowagent-net-nad-fun-token-risk-momentum-decision-report-7cab1104
```

Example prompt: Can you pull the full risk and momentum decision report for nad.fun token 0x1234567890abcdef1234567890abcdef12345678 on Monad — I want the score, risk level, recommended action, and whether it's graduated?

## When to prefer this

Use this endpoint when you need a single, opinionated decision signal (score + action + risk level) for a specific nad.fun token on Monad, rather than raw on-chain data or generic market data. Particularly useful when an agent needs to make a trade or risk decision without manually aggregating multiple data sources. The free /v1/lite probe can be used first to validate the token before paying for the full report.

## Known failure modes

- Invalid or malformed token address (not 42-character 0x hex) — likely returns 400 or validation error
- Token not found on nad.fun/Monad — may return 404 or empty result
- Payment not fulfilled — returns 402 Payment Required (a free /v1/lite endpoint exists for probing)
- Network or upstream data unavailability — may return 500 or timeout

## How this service works

Full decision report for one nad.fun token: score, riskLevel, action, factors, graduation, momentum. Free probes: GET /v1/screen/sample or GET /v1/lite?token=0x…

## Output

A structured JSON report containing: a 0-100 composite score, a riskLevel category, a recommended action (e.g. buy/sell/hold), graduation status, momentum indicators, and a set of explanatory factors detailing why the score was assigned.

## 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-payflowagent-net-nad-fun-token-risk-momentum-decision-report-7cab1104/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nad.payflowagent.net](https://www.zero.xyz/host/nad.payflowagent.net/llms.txt)
