# KiHustle Weight Converter API

> KiHustle Weight Converter API 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).

Converts a numeric weight value from one unit to another (e.g. kilograms to pounds)

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/weight-converter
- 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-weight-converter-api-e043333b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ULPFK3F4oetbkFXNcmCe5

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-weight-converter-api-e043333b -d '<json body>'
```

Example prompt: Can you convert 75 kilograms to pounds for me?

## When to prefer this

Use this endpoint when you need a simple, pay-per-call weight unit conversion without setting up a local conversion library. It is suitable for lightweight agent workflows that occasionally need to convert weight values between metric and imperial units on demand.

## Known failure modes

- Missing required fields (value, from_unit, or to_unit) result in an error response
- Unsupported or misspelled unit strings may return an error or unexpected result
- Non-numeric value input may cause a validation failure
- Network timeout or service unavailability returns a non-200 status

## 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

A JSON object containing the converted weight value under a 'result' field and a 'status' field indicating success or failure of the conversion.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "value": {
   "type": "number"
  },
  "to_unit": {
   "type": "string"
  },
  "from_unit": {
   "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-weight-converter-api-e043333b/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)
