# SwapHunt Expected Move (ATR-Based Price Range)

> SwapHunt Expected Move (ATR-Based Price Range) is a paid API for AI agents from x402.swaphunt.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns ATR-derived 68% and 95% probability price bands around the current price for a given asset and period, for use as targets, stops, and breakout thresholds.

## Facts

- Endpoint: GET https://x402.swaphunt.dev/v1/vol/expected-move
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/swaphunt-expected-move-atr-based-price-range-12f85811
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AiNPi2CiUjyJe0XuTpPBT

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-expected-move-atr-based-price-range-12f85811
```

Example prompt: What are the ATR-based expected move bands for BTC/USDT on the daily timeframe — give me both the 68% and 95% probability ranges so I can set realistic stops and targets?

## When to prefer this

Use this endpoint when you need a statistically grounded, ATR-derived price range for a crypto asset rather than a directional prediction. Ideal for setting stops, targets, and breakout levels. Prefer this over raw volatility endpoints when you specifically need pre-computed probability bands (68%/95%) ready for trading decisions.

## Known failure modes

- Unsupported asset symbol returns an error or empty data
- Unsupported quote currency returns an error
- Invalid period string (not 4h, 1d, or 1w) returns a validation error
- Payment not received or insufficient USDC results in 402 Payment Required
- Upstream price/ATR data unavailable causes a 500 or timeout

## How this service works

ATR-based expected price range for the period: the 68% and 95% probability bands around current price. Use to set realistic targets, stops and breakout thresholds. A statistical range, not a directional forecast.

## Output

Returns the 68% and 95% statistical price bands (upper and lower bounds) around the current price for the requested asset/quote pair and period, derived from ATR. Not a directional forecast — a neutral probability range for use in position sizing, stop placement, and breakout level setting.

## 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"
      },
      "quote": {
       "type": "string",
       "default": "USDT",
       "description": "Quote currency (USDT, USDC, EUR)"
      },
      "period": {
       "type": "string",
       "default": "1d",
       "description": "Period (4h, 1d, 1w)"
      }
     }
    }
   },
   "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-expected-move-atr-based-price-range-12f85811/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)
