# KiHustle HODL Period Return Calculator

> KiHustle HODL Period Return 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 the percentage return for a HODL (hold) period given a start price and end price of an asset

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/hodl-period-return
- 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-hodl-period-return-calculator-f8730b9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0I9ikvXA1SwX6F0nWFIr8

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-hodl-period-return-calculator-f8730b9a -d '<json body>'
```

Example prompt: What was the return if I bought an asset at $20,000 and it's now worth $65,000 — how much did I gain in percentage terms?

## When to prefer this

Choose this endpoint when you need a quick, lightweight computation of the percentage return between two asset prices for a HODL period, especially within an automated crypto analytics or portfolio tracking workflow that uses x402 micropayment rails.

## Known failure modes

- Missing start_price or end_price fields returns an error
- Non-numeric values for prices cause validation failure
- Start price of zero causes division-by-zero error
- Negative price values may produce unexpected results
- Network or payment failure (x402 micropayment not completed) blocks the call

## 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 confirming successful processing with a 'result' and 'status' field. The computed HODL period return (percentage change between start and end price) is provided in the response payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "end_price": {
   "type": "number"
  },
  "start_price": {
   "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-hodl-period-return-calculator-f8730b9a/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)
