# KiHustle Sales Tax Calculator

> KiHustle Sales Tax Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Computes sales tax owed given a pre-tax amount and a tax rate

## Facts

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

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-sales-tax-calculator-06972a1c -d '<json body>'
```

Example prompt: Calculate the sales tax on $250 at a tax rate of 8.25% so I know the total tax owed on this transaction.

## When to prefer this

Use this endpoint when you need a simple, programmatic sales tax computation given a raw amount and a known tax rate, without needing jurisdiction-based rate lookup. It is ideal for scenarios where the tax rate is already known and only the arithmetic needs to be performed at low cost ($0.002 per call).

## Known failure modes

- Missing required 'amount' or 'tax_rate' fields returns an error
- Non-numeric values for amount or tax_rate may cause processing failure
- Negative or zero amounts may return unexpected results
- Rate expressed as percentage vs decimal may yield incorrect output if not normalized

## 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 tax calculation and a 'status' field confirming success. The actual computed tax value is embedded in the result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number"
  },
  "tax_rate": {
   "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-sales-tax-calculator-06972a1c/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)
