# DeFi Signals Market Snapshot

> DeFi Signals Market Snapshot is a paid API for AI agents from defi-signals.org, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns a low-cost real-time market snapshot including BTC/ETH prices and the Fear & Greed index for AI agent consumption via x402 micropayments.

## Facts

- Endpoint: GET https://defi-signals.org/market/snapshot
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-signals-market-snapshot-a7f9787e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_npXX0G8c1HfWl4Ql10G0U

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 defi-signals-market-snapshot-a7f9787e
```

Example prompt: What are the current BTC and ETH prices and is the market greedy or fearful right now? I want a quick snapshot of crypto market conditions.

## When to prefer this

Choose this endpoint when you need a low-cost ($0.002 USDC), single-call market snapshot combining BTC/ETH prices and Fear & Greed sentiment in one response, paid via x402 micropayment on Base — ideal for AI agents that need lightweight, frequent polling without a subscription or API key setup.

## Known failure modes

- 402 Payment Required if x402/USDC payment on Base is not properly attached
- Invalid or malformed payment header causing rejection
- Rate limiting if called too frequently
- Network timeout if defi-signals.org is temporarily unavailable
- Empty or stale data if upstream price feeds are lagging

## How this service works

One-call market snapshot: BTC/ETH/SOL spot prices with 24h change plus the Crypto Fear & Greed index. The cheapest way for an agent to establish market context.

## Output

A JSON object containing BTC/USD and ETH/USD spot prices (as numeric values), plus a Fear & Greed index score (0-100) and its text classification (e.g. 'Greed', 'Fear', 'Neutral') representing overall crypto market sentiment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "prices": {
   "btc_usd": 118431,
   "eth_usd": 4212.55
  },
  "fear_greed": {
   "value": 71,
   "classification": "Greed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-signals-market-snapshot-a7f9787e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-signals.org](https://www.zero.xyz/host/defi-signals.org/llms.txt)
