# SwapHunt Multi-Timeframe RSI Oversold Checker

> SwapHunt Multi-Timeframe RSI Oversold Checker 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 a boolean indicating whether an asset is oversold across 1h/4h/1d timeframes using a weighted blended RSI score

## Facts

- Endpoint: GET https://x402.swaphunt.dev/v1/sanity/is-this-oversold
- 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-multi-timeframe-rsi-oversold-checker-b5a99dd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_79R-pjgCmub3pHmGl_g13

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-multi-timeframe-rsi-oversold-checker-b5a99dd1
```

Example prompt: Check if Bitcoin is currently oversold using the multi-timeframe blended RSI — I want the 1h, 4h, and daily confluence check quoted in USDT.

## When to prefer this

Choose this endpoint when you need RSI-based oversold confirmation that spans multiple timeframes simultaneously rather than relying on a single chart interval. It is ideal for pre-trade sanity checks where you want timeframe confluence — not just a single 1h or 1d RSI reading. Prefer this over raw exchange RSI data when you want a pre-blended, weighted signal with a simple boolean output for automated decision pipelines.

## Known failure modes

- Unsupported symbol returns an error or empty result
- Unsupported quote currency causes a bad request
- Exchange data unavailable leads to timeout or error response
- Rate limit exceeded returns 402 or 429 error
- Network latency from upstream exchange data can cause delayed response

## How this service works

Multi-timeframe RSI oversold check (1h/4h/1d, weighted) returning a boolean + the blended RSI. Use to confirm an oversold condition across timeframes rather than trusting a single chart. RSI-based, not a buy signal on its own.

## Output

A boolean indicating whether the asset is oversold across timeframes, plus the weighted blended RSI value combining signals from the 1-hour, 4-hour, and daily charts for the requested symbol/quote pair.

## 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 (BTC, ETH, SOL)"
      }
     }
    }
   },
   "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-multi-timeframe-rsi-oversold-checker-b5a99dd1/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)
