# Button Money Smart Contract Audit

> Button Money Smart Contract Audit is a paid API for AI agents from buttonmoney.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Performs a security audit of a smart contract address, summarizing vulnerabilities and risk findings

## Facts

- Endpoint: POST https://buttonmoney.vercel.app/api/premium/security/contract-audit
- Price: $0.05/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-smart-contract-audit-39d3f702
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GBhvbBTJkPrrb7pss5qxc

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-smart-contract-audit-39d3f702 -d '<json body>'
```

Example prompt: Can you audit the smart contract at 0x1234abcd...5678 on Base (chain ID 8453) and tell me if there are any vulnerabilities or security issues I should know about before interacting with it?

## When to prefer this

Use this endpoint when you need a quick, AI-summarized security audit of a specific smart contract address, especially on Base (chain 8453). Prefer this over full token security scans when you specifically want a contract-level vulnerability report rather than token-level metadata analysis.

## Known failure modes

- Invalid or malformed contract address returns a 400 error
- Contract address not found on the specified chain returns an empty or error result
- Unsupported chain ID returns an error indicating the chain is not supported
- Payment not provided or insufficient results in a 402 Payment Required response
- Network timeout or provider downtime results in a 503 or timeout error

## How this service works

Smart contract audit summary with vulnerability detection

## Output

Returns a structured audit summary including detected vulnerabilities, severity classifications, and an overall security assessment for the given smart contract address on the specified chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "contractAddress"
 ],
 "properties": {
  "chainId": {
   "type": "number",
   "description": "Chain ID (default: 8453 for Base)"
  },
  "contractAddress": {
   "type": "string",
   "description": "Smart contract address to audit"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/button-money-smart-contract-audit-39d3f702/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)
