
What Is My IP Address? How to Find It & What It Reveals About You
What Is an IP Address?
An IP (Internet Protocol) address is a unique numerical identifier assigned to every device connected to the internet. Think of it as your device's mailing address — it tells other computers where to send data and where data is coming from. Without an IP address, you cannot communicate with any other device on the internet.
Every time you visit a website, send an email, or stream a video, your IP address is used to route that data between your device and the server. There are two main versions in use today: IPv4 (like 192.168.1.1) and IPv6 (like 2001:0db8:85a3::8a2e:0370:7334).
How to Find Your IP Address
The fastest way to find your public IP address is using an online tool. Our IP Geolocation Lookup tool automatically detects your IP and shows your location, ISP, and other details.
Find Your Public IP via Command Line
# Using curl
curl ifconfig.me
# Using wget
wget -qO- ifconfig.me
# Windows PowerShell
(Invoke-WebRequest ifconfig.me).Content
Find Your Private IP Address
# macOS/Linux
ifconfig | grep inet
# Windows
ipconfig
# Linux (modern)
ip addr show
Public vs Private IP Addresses
Private IP ranges reserved by IANA:
- 10.0.0.0 – 10.255.255.255 (Class A, 16M addresses)
- 172.16.0.0 – 172.31.255.255 (Class B, 1M addresses)
- 192.168.0.0 – 192.168.255.255 (Class C, 65K addresses)
What Your IP Address Reveals About You
Your public IP address can reveal surprising amounts of information. Here's what websites and services can learn from your IP alone:
You can see exactly what your IP reveals using our IP Geolocation Lookup tool — it shows all of this information for any IP address.
IPv4 vs IPv6: What's the Difference?
| Feature | IPv4 | IPv6 |
|---|---|---|
| Address Length | 32-bit (4 bytes) | 128-bit (16 bytes) |
| Format | 192.168.1.1 | 2001:0db8::8a2e:0370:7334 |
| Total Addresses | ~4.3 billion | ~340 undecillion |
| Header Size | 20-60 bytes | 40 bytes (fixed) |
| Security | Optional (IPsec) | Built-in (IPsec required) |
How to Hide Your IP Address
If you're concerned about privacy, there are several ways to mask your real IP address:
- VPN (Virtual Private Network): Routes your traffic through an encrypted tunnel to a server in another location. Most effective for privacy.
- Proxy Server: Acts as an intermediary for your traffic. Less secure than VPNs but can be faster.
- Tor Browser: Routes traffic through multiple encrypted relays. Strongest anonymity but slowest speed.
Frequently Asked Questions
See the FAQ section above for answers to common questions about IP addresses.
Want to see what your IP reveals?
Check Your IP Address Now →Try IP Geolocation Lookup
Find your IP address and see what it reveals about your location and ISP.
Frequently Asked Questions
Related Articles

What Is an IP Address? The Complete Guide to How Your Internet Identity Works
Discover everything about IP addresses — from IPv4 vs IPv6 to public vs private IPs, how they're assigned, and why your digital identity depends on them.

DNS Lookup Explained: How the Internet's Phonebook Connects You to Every Website
Learn how DNS lookup works, from recursive queries to authoritative answers. Understand DNS records, caching, and how to troubleshoot DNS issues.

Traceroute Explained: How to Diagnose Network Problems Like a Pro
Understand how traceroute maps the path data takes across the internet, interpret the output, and use it to pinpoint network issues from latency spikes to routing problems.