# ByKaranteli RSI Heatmap Hourly History

> ByKaranteli RSI Heatmap Hourly History is a paid API for AI agents from bykaranteli.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns hourly-recorded Wilder RSI(14) historical snapshots across 8 timeframes for ~580 Binance USDT perpetuals, filterable by symbol, interval, and date range.

## Facts

- Endpoint: GET https://bykaranteli.com/api/x402/rsi-history
- 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/bykaranteli-rsi-heatmap-hourly-history-ac9d1f40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YVFWrFhy6rzjU_0oAB4qJ

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 bykaranteli-rsi-heatmap-hourly-history-ac9d1f40
```

Example prompt: Pull the RSI(14) history for BTCUSDT on the 4h interval from 2025-01-01 to 2025-03-31, up to 5000 rows, from the ByKaranteli RSI heatmap history dataset.

## When to prefer this

Choose this endpoint when you need historical RSI(14) snapshots (not computed on-demand) for Binance USDT perpetuals across multiple timeframes. It is uniquely suited for backtesting RSI-based strategies, building heatmaps of overbought/oversold conditions over time, and analyzing multi-timeframe RSI divergence — covering ~580 symbols including TradFi perps. Use the free /api/public/rsi board instead if you only need current live values.

## Known failure modes

- Empty rows array if no data exists for the requested symbol/interval/date range combination
- Date range predating 2026-09-02 (dataset start) returns no rows
- Limit exceeding 20000 is rejected or capped
- Invalid symbol string returns empty result or error
- Payment failure due to insufficient USDC balance for the $0.002 x402 micropayment

## How this service works

Hourly Wilder RSI(14) history for ~580 Binance USDT perpetuals (crypto top-400 by volume plus every TradFi perp) on 15m, 1h, 4h, 12h, 1d, 3d, 1w and 1M intervals, recorded on our side from 2026-09-02; the free /api/public/rsi board only carries the live values.

## Output

A JSON object with an 'ok' boolean, a 'dataset' label ('rsi-history'), a 'count' of returned rows, and a 'rows' array of RSI(14) snapshots. Each row contains the symbol, interval, RSI value, and timestamp recorded hourly on ByKaranteli's side.

## 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",
     "properties": {
      "to": {
       "type": "string",
       "description": "iso, optional"
      },
      "from": {
       "type": "string",
       "description": "iso, optional"
      },
      "limit": {
       "type": "number",
       "description": "number, optional, max 20000"
      },
      "symbol": {
       "type": "string",
       "description": "string, optional, e.g. BTCUSDT"
      },
      "exchange": {
       "type": "string",
       "description": "string, optional: interval filter, e.g. 4h"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "rows": [],
  "count": 500,
  "dataset": "rsi-history"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bykaranteli-rsi-heatmap-hourly-history-ac9d1f40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bykaranteli.com](https://www.zero.xyz/host/bykaranteli.com/llms.txt)
