# true402 Base Token Report

> true402 Base Token Report is a paid API for AI agents from true402.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a detailed on-chain report for an ERC-20 token contract on the Base network

## Facts

- Endpoint: POST https://true402.dev/api/v1/base/token-report
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/true402-base-token-report-46df2468
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tM01bgDs-9QDPzhZXvBEe

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 true402-base-token-report-46df2468 -d '<json body>'
```

Example prompt: Can you pull the on-chain token report for the ERC-20 contract at 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call on-chain report for a specific ERC-20 token deployed on the Base network and want to avoid API key management — payment is handled via HTTP 402 with a crypto wallet.

## Known failure modes

- Invalid or non-existent contract address returns an error
- Unsupported chain (non-Base) returns an error
- Malformed 0x address format causes validation failure
- Network or RPC timeout results in a 5xx error
- Payment failure (HTTP 402) if USDC wallet balance is insufficient

## How this service works

The machine-native marketplace. Wallet = identity. Pay per call with HTTP 402.

## Output

A JSON object containing on-chain report data for the specified ERC-20 token contract on the Base network, which may include token metadata, supply, holder info, and other chain-level details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain to check; only 'base' is supported (default)"
  },
  "token": {
   "type": "string",
   "description": "ERC-20 contract address (0x…) on Base"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "token": {
   "type": "string"
  },
  "safety": {
   "type": "object",
   "description": "the full token-safety report (score, flags, liquidity, honeypot)"
  },
  "verdict": {
   "type": "object",
   "description": "rating (avoid|caution|ok), score (0–100), reasons[]"
  },
  "recentPulls": {
   "type": "array",
   "description": "recent liquidity-removal events on this token, newest first. Includes zero-value Burns — Uniswap V3 emits one on every fee collection — so read quoteRemoved, not the array length: only a non-zero quoteRemoved moves the verdict."
  },
  "recentWhaleSwaps": {
   "type": "array",
   "description": "recent large ($-value) swaps on this token, newest first"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/true402-base-token-report-46df2468/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from true402.dev](https://www.zero.xyz/host/true402.dev/llms.txt)
