# SwapHunt FOMO Guard – How Late Am I?

> SwapHunt FOMO Guard – How Late Am I? 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-13).

Returns how far a crypto asset's price has already moved from its recent swing low, expressed as % and ATR multiples, compared to historical averages, with an early/mid/late chase-risk label.

## Facts

- Endpoint: GET https://x402.swaphunt.dev/v1/fomo/how-late-am-i
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/swaphunt-fomo-guard-how-late-am-i-041ad54a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jw4AX2A5QfUunWLFH7jow

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-fomo-guard-how-late-am-i-041ad54a
```

Example prompt: How late am I if I buy BTC right now — how far has it already run from the recent swing low in percent and ATR multiples, and is that early, mid, or late compared to history?

## When to prefer this

Use this endpoint when an agent needs to assess whether a current crypto price move is still in its early stages or already over-extended relative to historical norms, specifically in terms of ATR multiples and swing-low distance. Prefer this over generic price or momentum endpoints when the goal is anti-chase context and entry timing risk assessment.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty result
- Invalid quote currency falls back to default or returns an error
- Insufficient historical data for the symbol may return null ATR or incomplete stats
- Service unavailable or payment failure returns a 402 or 5xx error

## How this service works

FOMO guard: how far has price already run from the recent swing low — in % and ATR multiples — versus the historical average move? Returns an early/mid/late read so an agent doesn't buy the top. Anti-chase context.

## Output

Returns the current price move from the recent swing low as a percentage and in ATR multiples, the historical average move size for context, and a categorical label (early/mid/late) indicating where in the typical move lifecycle the current price sits — helping an agent avoid buying the top.

## 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": {
      "quote": {
       "type": "string",
       "default": "USDT",
       "description": "Quote currency (USDT, USDC, EUR)"
      },
      "symbol": {
       "type": "string",
       "default": "BTC",
       "description": "Asset symbol"
      }
     }
    }
   },
   "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-fomo-guard-how-late-am-i-041ad54a/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)
