# payflowagent.net Token Summary

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

Returns graduation progress and momentum summary for a specific nad.fun token on the Monad blockchain

## Facts

- Endpoint: GET https://payflowagent.net/v1/token/:addr/summary
- Price: $0.03/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-token-summary-065f1c61
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mHxMZo3q7okxPsKPFaXKL

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-token-summary-065f1c61
```

Example prompt: Can you pull the graduation progress and momentum summary for nad.fun token 0x1234567890abcdef1234567890abcdef12345678 on Monad?

## When to prefer this

Use this endpoint when you need a concise, single-token summary including graduation progress and momentum for a nad.fun token on Monad, especially when you want a low-cost ($0.03) per-call lookup rather than a ranked list of tokens.

## Known failure modes

- Invalid or malformed token address (not 42 hex characters) returns 400 error
- Token address not found on nad.fun or Monad returns 404
- Payment not provided or insufficient USDC returns 402 Payment Required
- Network or upstream data unavailability returns 503

## How this service works

Guenstiger Einstieg: Graduation-Fortschritt + Momentum-Zusammenfassung fuer einen nad.fun-Token auf Monad. Free probe (no payment): GET /v1/lite?token=0x...

## Output

Returns a structured summary including graduation progress percentage, momentum indicators, score, risk level, and recommended action for the specified nad.fun token on Monad.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "addr"
     ],
     "properties": {
      "addr": {
       "type": "string",
       "description": "nad.fun Token-Adresse auf Monad (0x..., 42 Zeichen)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-token-summary-065f1c61/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)
