# Orbonomy Geo Data Lookup

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

Returns geographic data and location-based information for a given query string via the Orbonomy unified API platform

## Facts

- Endpoint: POST https://www.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-b139661d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fyJKD8GG8LW0usVUGOk27

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

Example prompt: Can you pull up the geographic data for 'Berlin, Germany' using Orbonomy's geo endpoint — I need the location details for that city.

## When to prefer this

Use this endpoint when you need pay-per-call geographic data lookups without a subscription, especially within an x402-enabled agent workflow on the Orbonomy platform. Prefer this over traditional geo APIs when micropayment-based access is required or when consolidating multiple data service calls through a single unified platform.

## Known failure modes

- Missing or empty query field returns a validation error
- Unrecognized location string may return success:false or empty data
- Network or payment authorization failure returns HTTP 402 if USDC payment is not settled
- Malformed request body causes a 400-level error
- Server-side geo data unavailability may return a 500 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

A JSON object with a success boolean and geographic data corresponding to the queried location or place name, such as coordinates, region details, or other geo 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-b139661d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
