# SwapHunt Daily ATR Range Used

> SwapHunt Daily ATR Range Used 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-15).

Returns how much of today's expected ATR (Average True Range) daily price range has already been consumed — expressed as a percentage and a qualitative level (low/moderate/high/extended).

## Facts

- Endpoint: GET https://x402.swaphunt.dev/v1/cycle/daily-range-used
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/swaphunt-daily-atr-range-used-0cdf3809
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hPN_ttDqypLMv3zJ0xVfS

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-daily-atr-range-used-0cdf3809
```

Example prompt: How much of today's ATR daily range has BTC already used up — is it still low, moderate, high, or extended? Give me the percentage consumed so I know if there's room left to chase this move.

## When to prefer this

Use this endpoint when you need a quick intraday read on how much of today's expected trading range has already been used — ideal before entering a momentum trade to avoid chasing an already-extended move. Prefer this over general volatility endpoints when the question is specifically about today's remaining room relative to the ATR baseline.

## Known failure modes

- Unsupported asset symbol returns an error or empty response
- Invalid quote currency (e.g. non-existent pair) may return error
- If market data is unavailable or stale, the ATR calculation may be unreliable
- Rate limiting or payment failure at $0.002 USDC per call via x402 protocol

## How this service works

How much of today's expected (ATR) range has already been used — low/moderate/high/extended — with the % consumed. Use to judge remaining room before chasing intraday. Tells you how 'full' the day is.

## Output

Returns a qualitative range-fullness level (low/moderate/high/extended) and the percentage of today's expected ATR daily range that has already been consumed, helping traders judge whether meaningful intraday movement remains or the day is already 'full'.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "asset": "BTC",
   "quote": "USDT"
  }
 }
}
```

## 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)"
      }
     }
    }
   },
   "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-daily-atr-range-used-0cdf3809/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)
