# KiHustle Discount Calculator

> KiHustle Discount 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-14).

Calculates the final price after applying a percentage discount and VAT rate to a given base price

## Facts

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

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-discount-calculator-f8076d3d -d '<json body>'
```

Example prompt: What's the final price on a €49.99 item if I apply a 15% discount and a 19% VAT rate?

## When to prefer this

Choose this endpoint when you need a quick, programmatic computation of a final price after combining a percentage discount and a VAT rate on a base price — particularly useful in e-commerce, invoicing, or retail pricing workflows where you want a lightweight, pay-per-call calculation without setting up your own formula logic.

## Known failure modes

- Missing required fields (price, vat_rate, or discount_percent) may return an error or null result
- Invalid non-numeric values for price or rates likely cause a processing failure
- Negative discount or VAT values may produce unexpected results
- Very large or very small floating point numbers may cause precision issues

## 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 indicating the processed outcome and a 'status' field confirming success. The actual computed discounted+VAT price is included in the result payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "price": {
   "type": "number"
  },
  "vat_rate": {
   "type": "number"
  },
  "discount_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-discount-calculator-f8076d3d/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)
