IPAddress.to

Discover Your Digital Identity

Your IP Address
Loading...

Fetching your information...

IP Version
IPv4
Location
Detecting...
ISP
Loading...
Country
Detecting...
Timezone
Loading...
Organization
Loading...

API Documentation

GET
/api/ip
Get basic IP information for the requesting client including IP address, version, and basic geolocation data.
JSON Response
{ "ip": "192.168.1.100", "version": "IPv4", "location": "Local Network", "country": "Private Network" }
API Response
GET
/api/ip/detailed
Get comprehensive IP information including ISP details, timezone, organization, and additional metadata.
JSON Response
{ "ip": "192.168.1.100", "version": "IPv4", "location": "Local Network", "country": "Private Network", "isp": "Local Router", "timezone": "America/New_York", "organization": "Private Use", "timestamp": "2025-06-23T12:00:00Z" }
API Response
GET
/api/ip/{ip_address}
Lookup information for a specific IP address. Replace {ip_address} with the IP you want to query.
JSON Response
{ "ip": "8.8.8.8", "version": "IPv4", "location": "Mountain View, CA", "country": "United States", "isp": "Google LLC", "timezone": "America/Los_Angeles", "organization": "Google Public DNS" }
API Response