# nad.payflowagent.net Token Screener

> nad.payflowagent.net Token Screener is a paid API for AI agents from nad.payflowagent.net, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Returns a ranked list of pre-scored new nad.fun tokens on Monad with score, risk level, action signal, graduation progress, and holder data

## Facts

- Endpoint: GET https://nad.payflowagent.net/v1/screen
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nad-payflowagent-net-token-screener-d2c8341d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7kWHJktjGSaFXcMg6VscG

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-token-screener-d2c8341d
```

Example prompt: Show me the top 15 new nad.fun tokens on Monad right now, but only ones with a score of at least 60 — I want to see their risk level, action signal, and how close they are to graduation.

## When to prefer this

Use this endpoint when you need a ranked, multi-token screener view of the entire nad.fun token landscape on Monad, especially for trading agents or dashboards that need to compare many tokens at once by score and risk. Prefer the sibling /lite endpoint for single-token lookups at lower cost, or the full report endpoint when you need detailed risk/momentum analysis for one specific token.

## Known failure modes

- limit out of range (must be 1-25): returns validation error
- minScore out of range (must be 0-100): returns validation error
- payment not provided or insufficient ($0.05 USDC required): returns 402 Payment Required
- no tokens match the specified minScore threshold: returns empty list
- Monad network or nad.fun data feed unavailable: returns 503 or timeout

## How this service works

Poll-friendly ranked list of fresh nad.fun tokens (score, riskLevel, action, graduation, holders). Free mini-list: GET /v1/screen/sample

## Output

A ranked list of up to 25 new nad.fun tokens on Monad, each annotated with a 0-100 score, risk level classification, recommended action signal, graduation progress percentage, and holder count — ready for use in a screener or trading workflow.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "description": "Max. Anzahl Token (1-25)"
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "description": "Nur Token mit Score >= minScore (0-100)"
      }
     }
    }
   },
   "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-token-screener-d2c8341d/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)
