# Button Money Token Metrics

> Button Money Token Metrics 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).

Retrieves comprehensive token metrics including holder count, trading volume, and liquidity data for a given token contract address

## Facts

- Endpoint: GET https://buttonmoney.vercel.app/api/premium/data/token-metrics
- 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-token-metrics-71535a1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ju0zc4W1-pdIJQZIhrHY3

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-metrics-71535a1d
```

Example prompt: Pull up the full token metrics for contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base — I want to see holders, volume, and liquidity.

## When to prefer this

Use this endpoint when you need a single consolidated view of a token's market health metrics — holders, volume, and liquidity — especially for tokens on Base (chain ID 8453). Prefer this over building your own on-chain queries when you need fast, aggregated token data without setting up your own indexing infrastructure.

## Known failure modes

- Invalid or non-existent token contract address returns error or empty data
- Unsupported chain ID returns error
- Token with no on-chain activity may return zeroed metrics
- Payment failure (x402) prevents data access
- Rate limiting if called excessively

## How this service works

Comprehensive token metrics (holders, volume, liquidity)

## Output

Returns comprehensive token metrics including number of token holders, 24-hour or recent trading volume, and liquidity figures for the specified token contract on the given chain (defaults to Base, chain ID 8453).

## 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"
  }
 }
}
```

## More

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