# KiHustle BMI Calculator

> KiHustle BMI 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-16).

Calculates Body Mass Index (BMI) from height in meters and weight in kilograms

## Facts

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

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-bmi-calculator-f58b11ef -d '<json body>'
```

Example prompt: Can you calculate my BMI? I'm 1.78 meters tall and weigh 75 kilograms.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call BMI computation without building your own formula, especially in contexts where metric units (meters, kilograms) are already available. Not ideal if you need BMI category labels, imperial unit support, or detailed health interpretations.

## Known failure modes

- Missing height_m or weight_kg inputs returns an error
- Non-numeric or zero/negative values may cause computation errors or unexpected results
- Very extreme values (e.g. height 0 or weight 0) may not be validated and could return nonsensical BMI
- Generic 'processed' result field may not include a numeric BMI value or category label, reducing utility

## 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 containing the processed BMI value and a 'status' field indicating success or failure of the computation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "height_m": {
   "type": "number"
  },
  "weight_kg": {
   "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-bmi-calculator-f58b11ef/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)
