# 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 start value, end value, and number of years

## Facts

- Endpoint: POST https://kihustle.tech/agents/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-911d0323
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BipN-69HYTq0CyTfHlNL-

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

Example prompt: What's the CAGR if an investment grew from $5,000 to $18,500 over 7 years?

## When to prefer this

Use this endpoint when you need a fast, cheap, serverless computation of CAGR without implementing the formula yourself. Ideal for AI agents embedded in finance, investing, or side-hustle income tracking workflows where the user provides a start value, end value, and time horizon. It costs only $0.002 per call via x402 micropayment, making it practical for on-demand calculations. Prefer this over general-purpose calculators when you want a minimal, dedicated CAGR API with JSON output.

## Known failure modes

- Missing required fields (start_value, end_value, or years) returns an error
- start_value of zero causes division-by-zero or undefined CAGR
- Negative values may produce NaN or invalid results if the implementation doesn't handle them
- years value of zero causes mathematical error
- Non-numeric inputs for any field will likely return a processing error

## 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 CAGR value (as a decimal or percentage) and a 'status' field confirming success. The agent can use this to report the annualized growth rate to the user.

## 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-911d0323/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)
