# IP Geolocation & ISP Lookup

> IP Geolocation & ISP Lookup is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns geolocation data and ISP information for a given IP address

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/ip
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ip-geolocation-isp-lookup-7477974f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_usz11OCQUCV6HBWWxCUUZ

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 ip-geolocation-isp-lookup-7477974f
```

Example prompt: Can you look up the geolocation and ISP details for the IP address 203.0.113.42?

## When to prefer this

Use this endpoint when you need quick, low-cost IP geolocation and ISP data without setting up a dedicated geolocation service. It's well-suited for agent pipelines that need to enrich IP addresses on-demand, especially within x402 micropayment workflows at $0.003 per call.

## Known failure modes

- Invalid or malformed IP address returns an error
- Private/reserved IP addresses (e.g. 192.168.x.x, 10.x.x.x) may return no geolocation data
- IPv6 addresses may have limited data
- Missing 'ip' query parameter may return an error or default to the caller's IP
- Rate limiting or payment failure returns 402

## How this service works

IP geolocation and ISP info. ?ip=8.8.8.8

## Output

Returns geolocation details for the queried IP address, including country, city, region, latitude/longitude, timezone, ISP name, and organization/AS number.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "ip": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ip-geolocation-isp-lookup-7477974f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
