# KiHustle Gross-Net Calculator

> KiHustle Gross-Net 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 gross-to-net or net-to-gross amounts including VAT/tax, given an amount, VAT rate, and calculation direction

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/gross-net-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-gross-net-calculator-db3b019e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wu16urWtZGv9GqT4Yw7oz

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-gross-net-calculator-db3b019e -d '<json body>'
```

Example prompt: I need to figure out the net price from a gross amount of 1190 euros with a 19% VAT rate — can you calculate it going from gross to net?

## When to prefer this

Use this endpoint when you need a quick, cheap API-based gross/net VAT calculation without building the math yourself, especially in automated workflows for invoicing, pricing, or tax reporting. Prefer it over manual computation when the direction of conversion (gross-to-net or net-to-gross) needs to be parameterized dynamically.

## Known failure modes

- Missing required fields (amount, vat_rate, direction) may return an error or unexpected result
- Invalid direction string (not 'gross_to_net' or 'net_to_gross') may cause incorrect computation
- Non-numeric amount or vat_rate may cause a processing error
- Zero or negative VAT rate may produce mathematically valid but logically unexpected results
- Response schema is minimal — exact error codes and messages are not documented

## 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 indicating the calculated result (gross or net amount depending on direction) along with a success status, given the input amount, VAT rate, and direction of calculation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number"
  },
  "vat_rate": {
   "type": "number"
  },
  "direction": {
   "type": "string"
  }
 }
}
```

## 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-gross-net-calculator-db3b019e/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)
