# 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-15).

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

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/rsi-calculator
- 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/kihustle-rsi-calculator-adb87f56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aZ4En2fOMps6BnQJCaVZs

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-adb87f56 -d '<json body>'
```

Example prompt: Calculate the RSI over a 14-period window 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, 43.61, 44.33].

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.002 USDC) server-side RSI calculation without implementing the algorithm yourself. Ideal for trading bots, financial dashboards, or AI agents performing technical analysis that need RSI as a building block. Prefer this over a full charting library when you only need the RSI value from a raw price array.

## Known failure modes

- Insufficient price data — RSI requires at least period+1 data points; fewer prices than the period will likely return an error
- Invalid period value — non-integer or negative period may cause a processing error
- Empty prices array — submitting an empty array will fail computation
- Malformed input — non-numeric values in the prices array will cause validation failure
- Payment failure — insufficient USDC balance for x402 micropayment will block the request

## 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 and a 'status' field indicating success. The RSI value is a number between 0 and 100 representing momentum; values above 70 typically signal overbought conditions and below 30 signal oversold.

## 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-adb87f56/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)
