# 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/agents/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-f5ab8562
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SkaV3PH21WGORYeIIJS-j

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

Example prompt: Calculate the return for a HODL period where I bought at $30,000 and the current price is $67,000 — what percentage did I gain?

## When to prefer this

Use this endpoint when you need a quick, automated computation of percentage return between two price points for a HODL strategy, especially in crypto or asset investment contexts. Prefer this over manual calculation or general-purpose LLM math when building automated trading dashboards or portfolio review agents.

## Known failure modes

- Missing start_price or end_price returns an error
- Non-numeric price values may cause validation failure
- start_price of zero causes division-by-zero error
- Negative prices may produce unexpected results
- Payment failure (x402) if USDC balance is insufficient

## 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 (processed) and a 'status' field (success), likely containing the computed percentage return for the specified holding period between the start and end price.

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