# DataVault IP Geolocation

> DataVault IP Geolocation is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up geographic location and metadata for a given IP address

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/geo
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-ip-geolocation-731180ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0IT0mnvEDGBcCV0EOyWlA

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 datavault-ip-geolocation-731180ff -d '<json body>'
```

Example prompt: What country and city is the IP address 203.0.113.42 located in? I need the timezone and ISP too if possible.

## When to prefer this

Use this endpoint when you need to quickly geolocate an IP address on a pay-per-call basis without a subscription, especially within an agent workflow that already uses USDC on Base for payments. Suitable for single IP lookups where you need location context such as country, city, or timezone.

## Known failure modes

- Invalid or malformed IP address returns an error or empty data object
- Private/reserved IP ranges (e.g. 127.0.0.1, 192.168.x.x) may return no geolocation data
- Upstream geolocation database outage may result in failed lookup
- Missing IP field in request body may cause a bad request error
- IPv6 addresses may not be supported or may return limited data

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a data object with geographic and network metadata for the provided IP address, including fields such as country, city, region, latitude, longitude, ISP, and timezone, along with a success boolean indicating whether the lookup succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ip": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-ip-geolocation-731180ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
