# payflowagent.net nad.fun Token Screener

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

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

## Facts

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

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 payflowagent-net-nad-fun-token-screener-75f85c50
```

Example prompt: Show me the top 15 new nad.fun tokens on Monad right now with a minimum score of 60 — ranked by score with their risk level, action recommendation, and graduation progress.

## When to prefer this

Use this endpoint when you need a pre-scored, ranked batch view of new nad.fun tokens on Monad — ideal for screener dashboards, polling loops in trading agents, or any workflow where you need to filter many tokens by quality score and risk in a single call rather than evaluating tokens one at a time.

## Known failure modes

- Payment not received or x402 payment header missing — 402 Payment Required
- limit parameter out of range (must be 1-25) — 400 Bad Request
- minScore out of range (must be 0-100) — 400 Bad Request
- No tokens match the requested minScore threshold — empty result list
- Monad RPC or nad.fun data source unavailable — 503 Service Unavailable
- Rate limit exceeded — 429 Too Many Requests

## How this service works

Gerankte Liste vorgescorter, neuer nad.fun-Token auf Monad (score, riskLevel, action, Graduation, Holder). Poll-freundlich fuer Screener/Trading-Agenten. Free probe (single token, no payment): GET /v1/lite?token=0x...

## Output

A ranked list of up to 25 new nad.fun tokens on Monad, each with a numeric score (0-100), risk level classification, recommended trading action, graduation progress indicator, and holder count — filtered by a minimum score threshold and sorted by score descending.

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