# KiHustle Calorie Calculator

> KiHustle Calorie 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 estimated daily calorie needs based on age, gender, height, and weight

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/calorie-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-calorie-calculator-47759604
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Wtkba3-42dUDavsDye9e

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-calorie-calculator-47759604 -d '<json body>'
```

Example prompt: Can you calculate my daily calorie needs? I'm a 28-year-old male, 180 cm tall and weigh 82 kg.

## When to prefer this

Use this endpoint when you need a quick, low-cost calorie computation from basic biometric inputs (age, gender, height, weight) and do not require activity-level adjustments or detailed macro breakdowns. It is well-suited for lightweight health and nutrition agents that need a simple calorie baseline without heavy external dependencies.

## Known failure modes

- Missing required fields (age, gender, height_cm, weight_kg) may cause a failed or partial computation
- Invalid gender string may produce unexpected results
- Unrealistic numeric values (e.g. negative weight or age) could yield incorrect estimates
- Response schema is minimal and may not expose detailed error messages or intermediate calculations

## 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 computed calorie estimate and a 'status' field confirming success of the computation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "age": {
   "type": "integer"
  },
  "gender": {
   "type": "string"
  },
  "height_cm": {
   "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-calorie-calculator-47759604/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)
