# Orbonomy Geo Data Lookup

> Orbonomy Geo Data Lookup is a paid API for AI agents from orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Queries geographic data and location information based on a free-text query string

## Facts

- Endpoint: POST https://orbonomy.xyz/api/data/geo
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-geo-data-lookup-6ba0586e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pd7ThP2te-nEuPx0l9Jvs

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 orbonomy-geo-data-lookup-6ba0586e -d '<json body>'
```

Example prompt: Can you look up the geographic data for Tokyo, Japan and give me the details?

## When to prefer this

Use this endpoint when you need quick, pay-per-call geographic data lookups without a subscription, especially in x402-enabled agent workflows where micropayments via USDC are acceptable. Prefer over subscription-based geo APIs for low-volume, one-off lookups.

## Known failure modes

- Invalid or unrecognized query string returns success:false
- Payment failure via x402 protocol results in 402 response before data is returned
- Ambiguous place names may return unexpected results or no data
- Network timeout if the geo data source is unavailable

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and geographic data about the queried location, potentially including coordinates, region info, country details, and other location metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-geo-data-lookup-6ba0586e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
