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

Calculates gross-to-net or net-to-gross amounts by applying a VAT/tax rate in a specified direction

## Facts

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

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

Example prompt: Can you calculate the net amount from a gross price of 1190 euros with a 19% VAT rate, going from gross to net?

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost API call to perform gross-to-net or net-to-gross VAT calculations without setting up a full accounting integration. It is best suited for simple single-amount VAT conversions in European-style tax contexts.

## Known failure modes

- Missing or invalid amount field returns error or unexpected result
- Invalid or missing vat_rate causes incorrect calculation or failure
- Unrecognized direction value may result in ambiguous or failed computation
- Non-numeric inputs for amount or vat_rate likely return a processing error

## 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 the calculated result amount and a success status, representing either the net price (VAT removed) or gross price (VAT added) depending on the direction specified.

## 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-ff246b78/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)
