# IP Geolocation & Proxy Detection API (api.strale.io)

> IP Geolocation & Proxy Detection API (api.strale.io) is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Looks up geographic location, ISP, network information, and proxy/hosting provider detection for a given IP address.

## Facts

- Endpoint: GET https://api.strale.io/x402/ip-geolocation
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-c73a99f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HAoPaQbYXk4QbYw9giEVz

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 api-strale-io-c73a99f3
```

Example prompt: Can you look up the location and ISP for IP address 8.8.8.8, and tell me if it's a proxy or hosting provider?

## When to prefer this

Use this endpoint when you need to geolocate a specific IP address and also want to detect whether it belongs to a proxy, VPN, or hosting provider in a single call. Prefer this over generic IP lookup tools when proxy/fraud detection context is needed alongside location data.

## Known failure modes

- Missing or invalid IP address parameter returns an error
- Malformed IP string may result in lookup failure
- Private/reserved IP ranges may return no geolocation data
- Payment not provided results in a 402 Payment Required error with accepted payment details

## How this service works

Look up geographic location, ISP, and network information for an IP address. Detects proxies and hosting providers.

## Output

Returns a JSON object with city, country, ISP name, geographic coordinates, and a boolean is_proxy flag indicating whether the IP is associated with a proxy, VPN, or hosting provider.

## Example request

```json
{
 "ip": "8.8.8.8"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ip"
     ],
     "properties": {
      "ip": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-c73a99f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
