# KiHustle Staking Rewards Calculator

> KiHustle Staking Rewards 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-15).

Calculates projected staking rewards given a principal amount, annual percentage yield (APY), and staking duration in days

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/staking-rewards-calculator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-staking-rewards-calculator-769c9e8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XoYTlRPy5oSQbochmIcWR

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-staking-rewards-calculator-769c9e8c -d '<json body>'
```

Example prompt: How much will I earn if I stake $5000 at an APY of 12% for 90 days?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.002 USDC) server-side computation of staking rewards based on a principal, APY, and time period — particularly useful in DeFi planning workflows, financial dashboards, or side-hustle income calculators where a simple formula-based projection suffices.

## Known failure modes

- Missing required fields (apy, days, or principal) may cause a 400 or unprocessed result
- Non-numeric or negative values for principal/APY/days may yield errors or unexpected results
- Server-side errors may return non-success status
- Payment failure via x402 protocol may block access to the endpoint

## 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 the calculation was processed successfully, along with a result field indicating the computed staking reward outcome. The response is minimal and confirms success status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "apy": {
   "type": "number"
  },
  "days": {
   "type": "integer"
  },
  "principal": {
   "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-staking-rewards-calculator-769c9e8c/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)
