# KiHustle CAGR Calculator

> KiHustle CAGR 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-13).

Calculates the Compound Annual Growth Rate (CAGR) given a starting value, ending value, and number of years

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/cagr-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-cagr-calculator-9aa38573
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eRc5A_mEf8jdNB-RR1Nvr

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-cagr-calculator-9aa38573 -d '<json body>'
```

Example prompt: What's the CAGR if an investment started at $10,000, grew to $24,500, and it took 8 years to get there?

## When to prefer this

Use this endpoint when you need a quick, serverless CAGR computation without setting up your own formula, especially in financial analysis workflows, investment summaries, or side-hustle income reporting. Prefer this over manual formula execution when you need a reliable, API-accessible calculation inside an agent pipeline.

## Known failure modes

- Missing required fields (start_value, end_value, or years) result in an error response
- Zero or negative start_value may cause division errors or undefined results
- Negative years value is mathematically invalid and may return an error
- Very large or very small floating point numbers may produce precision issues
- start_value equal to end_value returns a CAGR of 0%

## 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 containing the computed CAGR result as a numeric value (typically expressed as a percentage growth rate per year) along with a success status field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "years": {
   "type": "number"
  },
  "end_value": {
   "type": "number"
  },
  "start_value": {
   "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-cagr-calculator-9aa38573/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)
