# Button Money Market Signal

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

Returns real-time market signals and trend detection for a specific token or the general crypto market

## Facts

- Endpoint: POST https://buttonmoney.vercel.app/api/premium/agent/market-signal
- 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/button-money-market-signal-6ca1a72c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m78SxIBqLXTL-CcGXaxYo

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-market-signal-6ca1a72c -d '<json body>'
```

Example prompt: What are the current market signals for the token at address 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 — is it trending bullish or bearish right now?

## When to prefer this

Use this endpoint when you need fast, real-time trading signals or trend direction for a specific token or the broader crypto market. Prefer this over on-chain analytics endpoints when you want a pre-computed signal rather than raw data, and over security audit endpoints when your goal is market momentum rather than contract safety.

## Known failure modes

- Invalid or malformed token address returns an error
- Token address not found on supported chains returns empty or error response
- Network congestion may delay real-time signal freshness
- Payment failure via x402 results in 402 response with no data
- General market signal (no token) may return less granular data

## How this service works

Real-time market signals and trend detection

## Output

Returns real-time market signals and trend indicators for the specified token, or general market-wide signals if no token address is provided. Likely includes trend direction (bullish/bearish/neutral), signal strength or confidence, and supporting market condition data.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tokenAddress": {
   "type": "string",
   "description": "Token address (optional, returns general market signals if omitted)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/button-money-market-signal-6ca1a72c/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)
