Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import { IpValidation } from '@ip2geo/sdk' const ipAddress = '8.8.8.8' const { ip4, ip6 } = await IpValidation(ipAddress)
result = Ip2Geo.ip_validation('8.8.8.8') # { ip4: true, ip6: false }
import ip2geo result = ip2geo.ip_validation('8.8.8.8') # { 'ip4': True, 'ip6': False }
<?php use Ip2Geo\Ip2Geo; $result = Ip2Geo::ipValidation('8.8.8.8'); // ['ip4' => true, 'ip6' => false]
ip4
boolean
ip6
:ip4
Boolean
:ip6
‘ip4’
bool
‘ip6’
Was this page helpful?