# Hedgehog Edge Daily Crypto Snapshot

> Hedgehog Edge Daily Crypto 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-14).

Returns a daily market snapshot for a crypto trading pair including Bollinger Bands, SMAs (20/50/200), Ichimoku components, 2-year MA multiples, and weekly 20-week MA

## Facts

- Endpoint: GET https://hedgehogedge.com/api/x402/daily-snapshot/ETH%2FUSD
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hedgehog-edge-daily-crypto-snapshot-44520ca5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uCOtpadNIDC823rSeyTOk

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-crypto-snapshot-44520ca5
```

Example prompt: Can you pull today's daily market snapshot for ETH/USD from Hedgehog Edge — I want to see the Bollinger Bands, the 20, 50, and 200-day SMAs, and the Ichimoku cloud levels?

## When to prefer this

Choose this endpoint when you need a comprehensive bundle of classic crypto technical indicators — Bollinger Bands, multiple SMAs, and Ichimoku cloud components — in a single daily call, rather than querying separate indicator endpoints. Ideal for agents that perform end-of-day technical analysis, generate trading signals, or monitor trend and momentum conditions across crypto pairs. Prefer this over building your own OHLCV pipeline when you want pre-computed, ready-to-use indicator values without managing raw price data.

## Known failure modes

- Unsupported or unrecognized trading pair symbol returns an error
- Symbol not URL-encoded correctly (must use %2F instead of /) causes a 404 or routing failure
- Insufficient USDC payment or missing x402 payment header returns a 402 Payment Required
- Market data not yet available for the current day (e.g. called before market close) may return stale or incomplete data
- Network timeout if upstream data source is unavailable

## How this service works

Get a daily market snapshot for a crypto pair: Bollinger Bands (upper/middle/lower), key simple moving averages (SMA20/50/200), Ichimoku components (tenkan, kijun, senkou spans), 2-year moving-average multiples, and the weekly 20-week MA. USD and USDT quote variants resolve to the same dataset.

## Output

A JSON object containing the full daily snapshot for the requested crypto pair, including Bollinger Band values (upper, middle, lower), simple moving averages at 20, 50, and 200 periods, Ichimoku indicator components (tenkan-sen, kijun-sen, senkou span A and B), 2-year moving average multiples, and the weekly 20-week moving average. USD and USDT quote variants resolve to the same dataset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Trading pair in BASE/QUOTE format, e.g. \"BTC/USD\". Must be URL-encoded when called (BTC%2FUSD)."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hedgehog-edge-daily-crypto-snapshot-44520ca5/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)
