# Fibonacci Retracement Calculator

> Fibonacci Retracement 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).

Calculates Fibonacci retracement levels given a price range low and high

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/fibonacci-retracement
- 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/fibonacci-retracement-calculator-149ece3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRTWhWtjhOrl44tHa4vtD

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 fibonacci-retracement-calculator-149ece3b -d '<json body>'
```

Example prompt: Calculate the Fibonacci retracement levels for a price swing with a low of 42000 and a high of 68000.

## When to prefer this

Use this endpoint when you need a quick, low-cost programmatic computation of Fibonacci retracement price levels from a defined price range, especially within automated trading workflows or financial analysis pipelines that require real-time level derivation without building the math in-house.

## Known failure modes

- Missing or non-numeric low/high values result in an error
- Low value greater than or equal to high value may produce invalid or undefined levels
- Network timeout or server error returning non-200 response
- Payment failure due to insufficient USDC balance preventing the $0.002 per call charge

## 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 computed Fibonacci retracement price levels (typically 23.6%, 38.2%, 50%, 61.8%, 78.6%) derived from the provided low and high values, along with a success status indicator.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "low": {
   "type": "number"
  },
  "high": {
   "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/fibonacci-retracement-calculator-149ece3b/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)
