# DataVault IP Geolocation Lookup

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

Returns geolocation data (country, region, city, coordinates, etc.) for a given IP address

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/geo
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-ip-geolocation-lookup-5c0ffc53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KdU5LBnF8f-0Y4ltXk7-o

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-lookup-5c0ffc53 -d '<json body>'
```

Example prompt: Can you look up the geolocation for IP address 203.0.113.42 — I want to know the country, city, and region it's coming from?

## When to prefer this

Use this endpoint when you need pay-per-call IP geolocation without a subscription, especially when volume is low or unpredictable. Prefer over subscription-based geo APIs when you want USDC micropayment billing on Base with no upfront commitment.

## Known failure modes

- Invalid or malformed IP address returns error response
- Private or reserved IP ranges (e.g. 192.168.x.x) may return no geolocation data
- Missing 'ip' field in request body may cause lookup failure
- Rate limiting or payment failure results in 402 or 429 response
- Unavailable upstream geo data returns empty or null data object

## 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

A JSON object with a 'success' boolean and a 'data' object containing geolocation details for the queried IP address, typically including country, region, city, latitude, longitude, timezone, and ISP information.

## 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-lookup-5c0ffc53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
