# SwapHunt Market Silence Score

> SwapHunt Market Silence Score is a paid API for AI agents from x402.swaphunt.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a 0-1 composite silence score combining low volume, low volatility, and small price change to identify calm-before-the-move setups for a given asset.

## Facts

- Endpoint: GET https://x402.swaphunt.dev/v1/vol/silence
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/swaphunt-market-silence-score-457636c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qYby2OJEX9pl5i-Ahuewj

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 swaphunt-market-silence-score-457636c4
```

Example prompt: What's the current market silence score for ETH over the last 7 days? I want to know if it's in one of those calm-before-the-move setups right now.

## When to prefer this

Use this endpoint when you need a single composite metric to quantify how quiet/silent a market is, particularly to identify pre-breakout compression setups. Prefer over raw volatility or volume endpoints when you want a unified 0-1 score combining multiple quietness signals. Pairs with /vol/compression-alert for alerting workflows.

## Known failure modes

- Unsupported asset symbol returns an error or empty result
- Invalid lookback period format (e.g. '30x' instead of '30d') causes a validation error
- Service unavailable or rate-limited when market data provider is down
- Score near 0.5 may be ambiguous — neither clearly silent nor active

## How this service works

Market-silence score 0-1 — a composite of low volume, low volatility and small price change. High silence often precedes expansion. Use to spot the calm-before-the-move. Pairs with /vol/compression-alert.

## Output

A 0-1 composite silence score reflecting how quiet the asset is across volume, volatility, and price change dimensions, plus component signals; a high score indicates unusual calm that often precedes a price expansion.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string",
       "default": "BTC",
       "description": "Asset symbol"
      },
      "lookback": {
       "type": "string",
       "default": "7d",
       "description": "Lookback period"
      }
     }
    }
   },
   "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/swaphunt-market-silence-score-457636c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.swaphunt.dev](https://www.zero.xyz/host/x402.swaphunt.dev/llms.txt)
