# Hedgehog Edge Daily Snapshot

> Hedgehog Edge Daily Snapshot is a paid API for AI agents from hedgehogedge.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a daily market snapshot of key technical indicators (Bollinger Bands, moving averages, Ichimoku, MA2Y) for a given crypto symbol

## Facts

- Endpoint: GET https://hedgehogedge.com/api/x402/daily-snapshot/%7Bsymbol%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hedgehog-edge-daily-snapshot-3b56f546
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NzU4c2vm9UpoAHt1h6H8d

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 hedgehog-edge-daily-snapshot-3b56f546
```

Example prompt: Pull the daily technical indicator snapshot for BTCUSDT from Hedgehog Edge — I want to see the Bollinger Bands, SMAs, Ichimoku levels, and MA2Y values.

## When to prefer this

Choose this endpoint when you need a comprehensive set of daily technical indicators for a crypto pair in a single call — especially when you need Ichimoku, Bollinger Bands, multiple SMAs, and the 2-year MA together. Ideal for backtesting pipelines, signal generation, or daily market scans where you want pre-computed indicator values rather than raw OHLCV data.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Symbol format mismatch (e.g. BTC vs BTCUSDT) may cause lookup failure
- Data unavailable for very new or illiquid pairs
- Rate limiting or payment failure if USDC payment not properly submitted via x402 protocol

## How this service works

Hedgehog Edge is a Crypto trading analytics platform for backtesting indicators, comparing strategies, analyzing spot, alt/BTC & perp markets, and getting real-time signal alerts.

## Output

A JSON object containing: Bollinger Bands (upper, middle, lower), WMA20, moving averages (SMA20, SMA50, SMA200), Ichimoku components (Tenkan, Kijun, Senkou Span A, Senkou Span B), and MA2Y with 3x and 5x multipliers — all expressed as price levels for the requested symbol.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ma2y": {
   "ma2y": 75000,
   "ma2y3x": 225000,
   "ma2y5x": 375000
  },
  "wma20": 82000,
  "ichimoku": {
   "kijun": 96000,
   "tenkan": 98500,
   "senkouSpanA": 94000,
   "senkouSpanB": 90000
  },
  "bollingerBands": {
   "lower": 89000,
   "upper": 105000,
   "middle": 97000
  },
  "movingAverages": {
   "sma20": 98000,
   "sma50": 95000,
   "sma200": 80000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hedgehog-edge-daily-snapshot-3b56f546/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hedgehogedge.com](https://www.zero.xyz/host/hedgehogedge.com/llms.txt)
