DE | EN

Network Analysis

IPv4Click to copy:
216.73.216.58
Host: No Reverse DNS entry
Time: 2026-03-15 22:33:28
Copied!
IPv6Click to copy:
Checking...
Analyzing IPv6...
Copied!

IPv4 & IPv6 API for Developers

Fast & Secure. IPv4 & IPv6 Check. Our tool automatically detects your hostname and your current IP protocols. Would you like to use this information in your own scripts or applications?

We offer a simple **JSON interface** that you can query without authentication. This is ideal for server monitoring, DDNS updates, or network scripts.

Usage via Terminal (cURL)

To get only the IP address in your terminal, simply use our specialized subdomains:

# IPv4 Query
curl https://ipv4.myipv64.de

# IPv6 Query
curl https://ipv6.myipv64.de

Integration in Web Projects (JavaScript)

You can integrate IP data directly into your own website using fetch(). The response is in structured JSON format:

// IPv4 Query
fetch('https://ipv4.myipv64.de')
  .then(r => r.json()).then(d => console.log(d.ip));

// IPv6 Query
fetch('https://ipv6.myipv64.de')
  .then(r => r.json()).then(d => console.log(d.ip));

By separating the endpoints into ipv4. and ipv6., we guarantee that you can always enforce the desired protocol, regardless of your system's local network settings.