# WhatChuNeed Geo Utility

> WhatChuNeed Geo Utility is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves geolocation data from a free-text input string via a pay-per-call utility endpoint

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/geo
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-geo-utility-2d1809cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6QUMuWG_UEQZM4XJkrBbd

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 whatchuneed-geo-utility-2d1809cd -d '<json body>'
```

Example prompt: Can you look up the geolocation data for 'Austin, Texas' — I need the coordinates, country, and timezone?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call geolocation lookup without committing to a full-featured geocoding API subscription. It is particularly suited for AI agents operating in the x402 micropayment ecosystem that need to resolve occasional location strings to coordinates or metadata on demand, without managing API keys or monthly plans.

## Known failure modes

- Ambiguous or misspelled location string may return incorrect or empty results
- Unsupported or very obscure location names may yield no match
- Malformed input (non-string or empty) will likely return an error status
- Rate limiting or payment failure via x402 protocol may block the call
- Overly generic inputs like 'downtown' without a city context may resolve incorrectly

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a result object containing geolocation details such as coordinates (latitude/longitude), country, region, city, and possibly timezone derived from the input location string, along with a status field indicating success or failure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-geo-utility-2d1809cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
