# KiHustle Geo Distance Calculator

> KiHustle Geo Distance 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 the geographic distance between two coordinate pairs given as latitude/longitude points

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/geo-distance
- 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-geo-distance-calculator-9b8167a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wq_Db1sfLhhRIA-sNXjiG

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-geo-distance-calculator-9b8167a8 -d '<json body>'
```

Example prompt: What is the geographic distance between the coordinates 48.8566, 2.3522 (Paris) and 51.5074, -0.1278 (London)?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.002 USDC) programmatic distance computation between two coordinate pairs without setting up your own geospatial library. Best for lightweight agent workflows that need occasional point-to-point distance checks without a full mapping API subscription.

## Known failure modes

- Missing or invalid coordinate values (non-numeric lat/lon) may return an error or unexpected result
- Coordinates out of valid range (lat outside -90 to 90, lon outside -180 to 180) may cause computation errors
- Payment failure via x402 protocol will block the call
- Empty or malformed JSON body returns a bad request 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 'result' field indicating the computed distance output and a 'status' field confirming success. The actual numeric distance value and unit are included in the result payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat1": {
   "type": "number"
  },
  "lat2": {
   "type": "number"
  },
  "lon1": {
   "type": "number"
  },
  "lon2": {
   "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-geo-distance-calculator-9b8167a8/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)
