# Agent Signals Volatility — Crypto Volatility Regime Signal

> Agent Signals Volatility — Crypto Volatility Regime Signal is a paid API for AI agents from cryptojp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns realized volatility metrics and vol regime classification (normal/high/low) for a given crypto asset symbol.

## Facts

- Endpoint: GET https://cryptojp.com/v1/volatility
- 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/agent-signals-volatility-crypto-volatility-regime-signal-90a38673
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KiB2EAhtXTXwmYmr44I9s

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 agent-signals-volatility-crypto-volatility-regime-signal-90a38673
```

Example prompt: What's BTC's current volatility regime — is it normal, high, or low — and what's the annualized realized vol right now?

## When to prefer this

Use this endpoint when an AI trading agent needs to assess whether a crypto asset is in a high, normal, or low volatility regime before sizing positions, adjusting stop-losses, or deciding whether to trade at all. Prefer this over generic price feeds when the key question is vol regime classification rather than raw price data.

## Known failure modes

- Missing or invalid symbol parameter returns an error or empty response
- Unsupported asset symbol may return null data or an error
- Payment not settled via x402 returns HTTP 402 Payment Required
- Network timeout or upstream data unavailability returns 5xx error

## How this service works

Pay-per-call crypto market-intelligence API for autonomous AI trading agents. Funding-rate, BTC lead-lag and trend/chop regime signals, settled in USDC over x402.

## Output

A JSON object with the asset base symbol, 1-hour ATR as a percentage, a volatility regime label (e.g. 'normal'), annualized realized volatility percentage, and a human-readable interpretation string summarizing the current vol environment.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Base asset symbol, e.g. BTC, ETH, SOL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "base": "BTC",
  "atrPct1h": 0.41,
  "volRegime": "normal",
  "interpretation": "Annualized realized volatility ≈ 52% (normal). Normal volatility.",
  "annualizedVolPct": 52.3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-signals-volatility-crypto-volatility-regime-signal-90a38673/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptojp.com](https://www.zero.xyz/host/cryptojp.com/llms.txt)
