# Vealth Token Screener

> Vealth Token Screener is a paid API for AI agents from vealth.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Screens a token on a given blockchain for safety risks including liquidity analysis, holder distribution, honeypot detection, and overall risk scoring

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/cdp/token-screener
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-token-screener-8f0b4bd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GG1j4fJDlWPKk0npYhqJP

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 vealth-token-screener-8f0b4bd2 -d '<json body>'
```

Example prompt: Can you screen the token at address 0xdAC17F958D2ee523a2206206994597C13D831ec7 on Ethereum and tell me if it's a honeypot, what the liquidity looks like, and what the overall risk score is?

## When to prefer this

Use this endpoint when you need on-chain token safety data — specifically honeypot detection, liquidity checks, and holder analysis — before executing a trade or recommending a token. Prefer this over generic block explorers when you need a synthesized risk score rather than raw blockchain data, and when the x402 micropayment model (CDP-settled, $0.01 per call) is acceptable.

## Known failure modes

- Invalid or malformed contract address returns error
- Unsupported chain identifier returns error
- Token not found or not yet indexed returns empty/error response
- Payment not processed (x402) returns 402 Payment Required
- Network congestion or RPC timeout may delay response

## How this service works

token-screener (CDP-settled mirror) — Token safety screening — liquidity, holders, honeypot detection, risk scoring

## Output

Returns a structured safety report for the specified token including liquidity depth, holder count and distribution, honeypot detection verdict, and a composite risk score indicating how safe or risky the token is to trade.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "address": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-token-screener-8f0b4bd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
