find my ip.com

Your public IPv6 address

Ashburn, Virginia Amazon.com, Inc. UTC-4

Everything your connection just told us

Read straight off the request you made a moment ago — no permissions asked, no cookies set.

IPv4 address
IPv6 address
2600:1f28:365:80b0:528b:494b:cc96:8e44
Location
Ashburn, Virginia · United States
Estimated from your IP — not GPS.
Internet provider
Amazon.com, Inc.
AS14618 · registered in United States
Local time there
12:12:21
America/New York
Connection
Address seen from China
Differs from the address above when a China-optimised route is in use.
Browser & system
Device locale
Read from your browser, not your IP.

What your connection is giving away

Five quick checks, run entirely in your browser. Nothing here is uploaded anywhere.

Checking your exposure… Running five tests locally in your browser.

Your address is visible

Every site you open can read it, exactly as this one just did.

Approximate location

Working out how precisely your address places you…

Time zone consistency

Comparing your device clock with the location of your IP…

Locale fingerprint

Reading what your browser reveals about your region…

WebRTC leak

Checking whether your browser exposes an address behind a tunnel…

Encrypted connection

This page was delivered over HTTPS, so nobody on your network read it.

Tracking preference

Looking for a Do Not Track or Global Privacy Control signal…

Want a different address?

A VPN puts an encrypted tunnel between you and the internet. Sites see the server's address instead of yours, and your provider sees nothing but noise.

With a VPN, and without

The same connection, seen from the outside.

Right now Unprotected

  • Your real address is handed to every site, ad network and script you load.
  • Your provider can see and log every domain you visit.
  • On public Wi-Fi, anyone on the network can watch where you go.
  • Streaming and news sites decide what you may see based on your country.

With 12VPX Protected

  • Sites see a shared server address, not yours.
  • Your traffic leaves your device encrypted, so there is nothing to log.
  • Café and airport networks become as safe as your own.
  • Pick the country you appear to browse from, including China-optimised routes.

Built for the terminal too

No sign-up, no HTML to parse. Just your address, as plain text or JSON.

bash
$ curl https://find-my-ip.com
2600:1f28:365:80b0:528b:494b:cc96:8e44

$ curl https://find-my-ip.com/json
{
  "ip": "2600:1f28:365:80b0:528b:494b:cc96:8e44",
  "version": "IPv6",
  "protocol": "HTTP/2.0"
}

$ curl "https://find-my-ip.com/json?hostname=1"  # add reverse DNS

Questions people actually ask

Short, honest answers about what an IP address is and what it is not.

What is an IP address?
An IP address (Internet Protocol address) is the number that identifies your device on the internet. Every request you send carries it, so the server knows where to send the answer back. It is a bit like a return address on an envelope: necessary for the mail to work, and visible to everyone who handles it.
Is my IP address public information?
Yes. Every website you visit, every app you open and every email server you touch can see it. That is exactly how this page found yours — you did not tell us, your connection did. It is not secret, which is why it is worth knowing what it reveals.
What can someone learn from my IP address?
Your approximate location (usually the city or region, not your street), your internet provider, and whether you are on mobile, broadband, a business line, a hosting provider or a VPN. It does not reveal your name, your address or the contents of your traffic. Combined with other data, though, it is a durable way to track you across sites.
What is the difference between IPv4 and IPv6?
IPv4 addresses look like 203.0.113.42 and there are about 4.3 billion of them — long since exhausted. IPv6 addresses look like 2001:db8:85a3::8a2e:370:7334 and there are enough for every grain of sand on Earth, many times over. Most connections today run both at once; your network picks whichever the destination supports.
Why is my IPv6 address different from my IPv4 address?
They are separate addressing systems running side by side on the same connection. Your provider assigns both independently, so there is no relationship between the two numbers. Some networks are IPv4-only and have no IPv6 address at all, which is completely normal.
Why does the location shown here not match where I am?
IP geolocation is an estimate built from provider registration data, not GPS. It typically resolves to your ISP's regional hub rather than your actual neighbourhood, and mobile networks can place you a hundred kilometres away. If you are on a VPN it shows the server's location, which means it is working.
Does my IP address change?
Usually, yes. Most home connections get a dynamic address that changes when your router reconnects or after a lease expires. Static addresses that never change are typically a paid business option. Mobile connections change addresses constantly as you move between towers.
What is the difference between my public and private IP?
The address on this page is your public IP — the single one your whole household shares with the outside world. Behind your router, each device also has a private IP such as 192.168.1.14 that only exists on your local network. Websites never see the private one.
How do I hide or change my IP address?
A VPN is the practical answer: it routes your traffic through an encrypted tunnel and websites see the VPN server's address instead of yours. Tor also works but is far slower. Simply restarting your router may get you a new address from your provider, but it will still point to the same city and the same ISP.
Is it legal to look up an IP address?
Yes. Looking up your own address, or any address that connects to a server you run, is entirely ordinary — it happens automatically in every web server log on the planet. What matters is what you do with it, and harassment or unauthorised access is illegal regardless of how you obtained the address.
Do you log or store my IP address?
This page reads your IP from the connection, prints it, and that is the end of it. There are no trackers, no advertising scripts, no cookies and no third-party fonts — the entire page is one file served from one server, and your location is looked up here rather than by asking anyone else. The one outbound call is the optional China-route check, which your browser makes directly to speedtest.cn. Standard web server access logs exist, as they do everywhere.
Can I use this page from the command line?
Yes. Run curl https://find-my-ip.com and you get your bare IP address as plain text, ready to pipe into a script. Add /json for a structured response. The page detects terminal clients automatically, so no flags are needed.