# 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-13).

Calculates the geographic distance between two coordinate pairs given as latitude/longitude points

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/geo-distance
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-geo-distance-calculator-8d9771d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0rqjPaHBCwbbHC80vbKmT

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-8d9771d0 -d '<json body>'
```

Example prompt: What is the distance between the point at latitude 48.8566, longitude 2.3522 and the point at latitude 51.5074, longitude -0.1278?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.002/call) computation of geographic distance between two coordinate pairs without setting up local haversine logic. It is appropriate for lightweight geospatial checks in agent workflows, such as delivery zone validation or proximity scoring, where a simple point-to-point distance suffices and full mapping APIs (Google Maps, Mapbox) are unnecessary overhead.

## Known failure modes

- Missing or malformed lat/lon values may return an error or unexpected result
- Coordinates out of valid range (-90 to 90 for lat, -180 to 180 for lon) may cause computation errors
- Non-numeric input types for coordinate fields will likely cause a 400 or processing failure
- Vague response schema means error details may be minimal

## 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 distance value and a 'status' field indicating success. Actual distance unit (km, miles, etc.) is not explicitly documented but is likely kilometers based on standard geodesic computation conventions.

## 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-8d9771d0/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)
