Skip to main content
This function allows you to validate an IP address and check if it is valid and supported by our conversion services.
import { IpValidation } from '@ip2geo/sdk'

const ipAddress = '8.8.8.8'

const { ip4, ip6 } = await IpValidation(ipAddress)

Parameters

ipAddress
string
required
The IPv4 or IPv6 address to validate.

Response

IpValidationResult
object
An object containing validation results:
  • ip4: boolean - Whether the IP address is a valid IPv4 address.
  • ip6: boolean - Whether the IP address is a valid IPv6 address.