# 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-15).

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

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/discount-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-discount-calculator-0e265a64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OdGCBRF8Ca3O-hwldq0Ws

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

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

## When to prefer this

Use this endpoint when you need a quick, programmatic computation of a final price combining a discount percentage and VAT rate, especially in automated agent workflows or e-commerce pipelines where inline calculation is needed without implementing the math manually.

## Known failure modes

- Missing required fields (price, vat_rate, or discount_percent not provided) may result in a processing error
- Invalid numeric types (e.g. string instead of number) may cause a failed computation
- Extreme values (negative prices, discount > 100%) may produce unexpected or erroneous results
- Payment failure for the $0.001 USDC call fee via x402 protocol will block the request

## 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 computed result field indicating the final processed price after the discount and VAT have been applied, along with a success status flag.

## 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-0e265a64/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)
