IP Address

Description: Shows detailed information about IP addresses including location, network details, and related data.

API Response Structure:

{
  "ip": {
    "address": "192.168.1.1",
    "version": "IPv4",
    "type": "Private"
  },
  "location": {
    "country": "United States",
    "region": "California",
    "city": "San Francisco",
    "coordinates": {
      "latitude": 37.7749,
      "longitude": -122.4194
    }
  },
  "network": {
    "isp": "Example ISP",
    "organization": "Example Corp",
    "domain": "example.com",
    "asn": "AS12345"
  },
  "security": {
    "threatLevel": "Low",
    "isProxy": false,
    "isVPN": false
  },
  "type": "instantAnswers",
  "configType": "ipAddress"
}

Fields:

  • ip (object): IP address information

    • address (string): IP address

    • version (string): IP version

    • type (string): IP type

  • location (object): Geographic location

  • network (object): Network details

  • security (object): Security information

  • type (string): Always "instantAnswers"

  • configType (string): Always "ipAddress"