# Orbonomy Geo Data Lookup

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

Looks up geographic data for a given query string, returning structured geo information

## Facts

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

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-4fe90ab3 -d '<json body>'
```

Example prompt: Can you look up the geographic data for 'Paris, France' — I need the location details like coordinates or region info for that place?

## When to prefer this

Use this endpoint when you need to resolve a location name or geographic query string into structured geo data and are already operating within the Orbonomy x402 pay-per-call ecosystem. Prefer this for lightweight, per-call geographic lookups where you want a simple text-in, geo-data-out interface without setting up a dedicated geocoding API account.

## Known failure modes

- Empty or ambiguous query string returns no results or an error
- Query for a non-existent location may return success:false
- Misspelled place names may fail to resolve
- Overly broad queries may return unexpected results
- Network or payment authorization failure returns a 402 or 5xx error

## 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 flag and geographic data for the queried location, potentially including coordinates, region details, country codes, and other place 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-4fe90ab3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
