IP Whois

This API allows you to fetch geo-location and ownership data from an IP address as well as whether or not it's likely to be a proxy, mobile network, or a server hosted in a data center. This service relies on third-party data sources with strict no-logging policies.

API Usage

This API does not require a search type.

Request

POST https://api.inteldive.com/tools/ip-whois
Content-Type: application/json
Auth: API_KEY
{
  "terms": [ "12.34.56.78" ]
}

Response

{
  "size": 1,
  "took": 24,
  "matches": ["12.34.56.78"],
  "results": {
    "12.34.56.78": {
      "as": "AS7018 AT&T Services, Inc.",
      "asname": "ATT-INTERNET4",
      "city": "Kennesaw",
      "continent": "North America",
      "continentCode": "NA",
      "country": "United States",
      "countryCode": "US",
      "hosting": false,
      "isp": "AT&T Services, Inc.",
      "lat": 34.0344,
      "lon": -84.6002,
      "mobile": false,
      "org": "AT&T Services, Inc.",
      "proxy": false,
      "region": "GA",
      "regionName": "Georgia",
      "status": "success",
      "timezone": "America/New_York",
      "zip": "30144"
    }
  }
}