# Button Money Deep Token Security Scan

> Button Money Deep Token Security Scan is a paid API for AI agents from buttonmoney.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Performs deep security analysis on a token contract using GoPlus data and on-chain verification, returning risk score, honeypot status, and security flags

## Facts

- Endpoint: POST https://buttonmoney.vercel.app/api/premium/security/deep-scan
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/button-money-deep-token-security-scan-f06bab86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3ysgbFlQ_TVuy28GI0R2N

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 button-money-deep-token-security-scan-f06bab86 -d '<json body>'
```

Example prompt: Can you do a deep security scan on the token at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base (chain ID 8453) and tell me if it's a honeypot, what the risk score is, and any red flags?

## When to prefer this

Use this endpoint when you need comprehensive, multi-layered token security analysis combining GoPlus data with on-chain verification — especially before executing a trade or investment in an unfamiliar token. Prefer this over basic token lookups when you need honeypot detection, a quantified risk score, and specific security flags in a single call.

## Known failure modes

- Invalid token address format returns validation error
- Unsupported chain ID returns error or defaults to Base
- Token not found on specified chain returns empty or null result
- GoPlus API unavailability causes upstream failure
- Payment not received results in 402 response

## How this service works

Deep token security analysis with GoPlus + on-chain verification

## Output

Returns a numeric risk score, a boolean indicating whether the token is a honeypot, and an array of security flags identifying specific vulnerabilities or suspicious behaviors detected on-chain via GoPlus verification

## Example request

```json
{
 "chainId": 8453,
 "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tokenAddress"
 ],
 "properties": {
  "chainId": {
   "type": "number",
   "description": "Chain ID (default: 8453 for Base)"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Token contract address to scan (e.g., 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "riskScore": "number",
 "isHoneypot": "boolean",
 "securityFlags": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/button-money-deep-token-security-scan-f06bab86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from buttonmoney.vercel.app](https://www.zero.xyz/host/buttonmoney.vercel.app/llms.txt)
