# KiHustle Percent Calculator

> KiHustle Percent Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Computes a percentage of a given value and returns the numeric result

## Facts

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

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-percent-calculator-eb8df894 -d '<json body>'
```

Example prompt: What is 17.5% of 240? Use the percent calculator to give me the exact result.

## When to prefer this

Choose this endpoint when you need a simple, programmatic percentage calculation within an automated agent workflow, especially when you already have numeric value and percent inputs and want a fast, reliable computed result without building local math logic.

## Known failure modes

- Missing required fields (value or percent not provided) — likely returns an error or null result
- Non-numeric input types — may cause a 400 or processing error
- Negative or extreme values — behavior undefined by schema
- Service unavailability — generic 5xx response

## 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

A JSON object containing a 'result' field with the computed percentage value and a 'status' field confirming success (e.g. {"result": "processed", "status": "success"}).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "value": {
   "type": "number"
  },
  "percent": {
   "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-percent-calculator-eb8df894/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)
