# Button Money Token Risk Assessment

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

Assesses risk profile of a cryptocurrency token/protocol for trading decision support

## Facts

- Endpoint: POST https://buttonmoney.vercel.app/api/premium/agent/risk-assessment
- Price: $0.02/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-token-risk-assessment-99a59080
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RVDz1Kmo1Kua12le0aBdp

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-token-risk-assessment-99a59080 -d '<json body>'
```

Example prompt: Can you run a risk assessment on the token at address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 and tell me if it's safe to trade?

## When to prefer this

Use this endpoint when an agent needs a quick, affordable ($0.02) risk score for a specific token address to inform a trading or investment decision, especially before executing a trade or adding a token to a portfolio. Prefer this over the deeper security analysis endpoint when you need a fast risk signal rather than a full audit.

## Known failure modes

- Invalid or malformed token address returns validation error
- Token address not found on supported chains returns not found error
- Network timeout or upstream data provider failure returns 5xx error
- Unsupported blockchain network for the given token address

## How this service works

Token/protocol risk assessment for trading decisions

## Output

Returns a risk assessment report for the specified token address, including risk score, risk factors, and trading decision support data indicating the overall safety and risk level of the token or protocol.

## Example request

```json
{
 "tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tokenAddress"
 ],
 "properties": {
  "tokenAddress": {
   "type": "string",
   "description": "Token address for risk assessment"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/button-money-token-risk-assessment-99a59080/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)
