Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ip2geo.dev/llms.txt

Use this file to discover all available pages before exploring further.

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.