# 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 the gross-to-net or net-to-gross amount for a given value and VAT rate

## Facts

- Endpoint: POST https://kihustle.tech/agents/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-94728b23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S73wHsRJV_LvCtduPz-p2

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

Example prompt: Calculate the net price from a gross amount of 119 euros with a VAT rate of 19% — convert gross to net.

## When to prefer this

Choose this endpoint when you need a lightweight, cheap ($0.001 USDC) API call to convert between gross and net prices using a configurable VAT rate. Ideal for agents handling European pricing, invoicing, or accounting tasks where VAT calculation logic needs to be offloaded to an external service rather than computed inline.

## Known failure modes

- Missing required 'amount' field returns an error
- Invalid or missing 'direction' parameter may result in ambiguous or failed calculation
- VAT rate outside valid range (e.g. negative number) may produce unexpected results
- Malformed JSON body returns 400-level error
- Service unavailable returns 5xx 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 a calculated result field containing the converted amount (net or gross depending on direction), along with a success status indicator.

## 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-94728b23/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)
