# KiHustle RSI Calculator

> KiHustle RSI Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Computes the Relative Strength Index (RSI) for a given array of prices over a specified period

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/rsi-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-rsi-calculator-c3314b59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YRXJ1WMyfudznz3mLDV-M

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 kihustle-rsi-calculator-c3314b59 -d '<json body>'
```

Example prompt: Calculate the RSI over a 14-period lookback for these closing prices: 44.34, 44.09, 44.15, 43.61, 44.33, 44.83, 45.10, 45.15, 43.61, 44.33, 44.83, 45.10, 45.15, 46.28, 47.01.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call RSI computation without setting up your own financial library. Useful for lightweight trading bots, signal pipelines, or one-off technical analysis tasks where installing a full quant library is overkill. Best suited for agents automating trading decisions that need RSI as part of a broader workflow.

## Known failure modes

- Insufficient price data — RSI requires at least period+1 data points; fewer prices than the period will produce an error or invalid result
- Invalid period value — non-positive integers or zero period will likely fail
- Malformed prices array — non-numeric values or empty array may cause processing failure
- Generic 'processed' status with no meaningful RSI value returned due to sparse response schema
- Payment failure — endpoint requires 0.002 USDC per call via x402 protocol

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field containing the computed RSI value or outcome, and a 'status' field indicating success. The RSI value is a momentum oscillator typically ranging from 0 to 100, where values above 70 indicate overbought conditions and values below 30 indicate oversold conditions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "period": {
   "type": "integer"
  },
  "prices": {
   "type": "array",
   "items": {
    "type": "number"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-rsi-calculator-c3314b59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
