Catalog/data-ip-info

Data

IP geolocation API

Geolocate an IP address: country, city, region, coordinates, timezone, and a proxy flag. Free via freeipapi.com. Answers 'where is this IP', 'what country is this IP in', 'is this IP a proxy'.

Price$0.01per request
MethodPOST
Route/v1/data/ip-info
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
dataipgeolocationgeoiplocationproxy
API URLhttps://x402.hexl.dev/v1/data/ip-info
Integration docs
Example request
{
  "ip": "8.8.8.8"
}
Example response
{
  "ip": "8.8.8.8",
  "country": "United States",
  "countryCode": "US",
  "region": "California",
  "city": "Mountain View",
  "latitude": 37.4,
  "longitude": -122.07,
  "timezone": "America/Los_Angeles",
  "isProxy": false
}
Input schema
{
  "type": "object",
  "required": [
    "ip"
  ],
  "properties": {
    "ip": {
      "type": "string",
      "examples": [
        "8.8.8.8"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}