Skip to main content
Live · Finn just sniffed out your IP

What is my IP address?

IPFerret shows your public IPv4 / IPv6, ISP, ASN, approximate location, and request fingerprint — fast, privacy-first, with one-tap copy and share. No logs. No tracking. No nonsense.

No fingerprinting Server-rendered Open API
Your public IPsniffed just now
216.73.217.104
Country
US
City
Columbus
ASN
AS16509

ISP: Amazon.com, Inc.

Median lookup
< 50ms

Edge-cached, server-rendered.

Tracking cookies
0

No third-party tags, ever.

Built-in tools
12+

IP, DNS, WHOIS, CIDR, IPv6, headers, OUI…

Privacy-first
100%

No logs. No profiling. Open API.

Your connection

The full picture of what sites see

Every server you hit can see roughly this much about your connection. Finn surfaces it all in one place.

Your public IP
216.73.217.104IPv4
Country
US
Region
Ohio
City
Columbus
Timezone
America/New_York
Postal
43215
Coordinates
39.9612, -82.9988
ISP / network (ASN)AWS· cloud
ASN
AS16509
Operator
Amazon.com, Inc.
Type
Browser & connection
Browser
OS
Device
bot
Hostname
Remote port
3030
X-Forwarded-For chain
  • 216.73.217.104
Approximate location39.96, -83.00
Approximate IP location

Map is rendered server-side from a built-in landmask — no Google Maps, no third-party request, no JavaScript required. Geolocation is approximate; your public IP itself is exact.

Toolkit

Everything Finn knows about your network

A growing collection of free, privacy-first network tools — built into one cohesive product.

Privacy-first

Built like a magazine, not a tracking pixel.

IPFerret doesn't fingerprint your browser, doesn't store your IP in a database, and doesn't sell data to brokers. Display ads from Google AdSense fund the site — and EU/UK/Swiss visitors get an explicit 'do not consent' option through Google's CMP.

  • Pageview counter is first-party with daily-rotating salted hashes.
  • We don't fingerprint, profile, or correlate visitors across days.
  • All API responses are CORS-enabled, no auth required.
  • Self-hostable — the source code is documented end-to-end.

Built for speed

Edge-fast. Server-rendered. Zero JavaScript on first paint.

The IP, ASN, and geo data render before the browser parses a single byte of script. Subsequent interactions stream over the wire in milliseconds.

  • Next.js App Router with React Server Components.
  • Geo + ASN lookups cached at the edge for repeat visits.
  • OG cards generated per route via @vercel/og + Inter.
  • Built-in static world map — no Google Maps round-trip.

Developer-friendly

One API. JSON, plain-text, or shell — your pick.

Every UI surface is backed by a small, documented JSON API. Hit the endpoints from curl, jq, a CI job, or a serverless function.

  • GET /api/ip · /api/lookup · /api/headers · /api/ua
  • POST /api/lookup for batch lookups (up to 100 IPs).
  • CORS-enabled. No auth. Be kind — see /terms.
  • Edge-middleware rate limit kicks in well above human use.
{
  "ip": "203.0.113.42",
  "version": "v4",
  "geo": {
    "city": "Phoenix",
    "country": "US"
  },
  "asn": {
    "asn": 15169,
    "name": "GOOGLE"
  },
  "privacy": true
}

Networking 101

The questions Finn gets asked most

Short answers to the questions every visitor has when they land on an IP-lookup page.

What is a public IP?

Your public IP is the address the rest of the internet sees when your device sends traffic. It identifies your network, not you personally. Every site, API, and service you connect to receives it as the return label on your packets.

Is IP geolocation exact?

No — it's an estimate based on what your ISP registered against the address block. City-level accuracy is common, but it can be off by hundreds of miles, especially on mobile networks. Your public IP itself is exact.

Why does my IP matter?

Servers use it to route responses back to you, apply rate limits, geo-restrict content, and detect abuse. Your IP doesn't reveal your name or browsing history — but ISPs and law enforcement can correlate it with subscriber records.

How do I hide or change my IP?

A VPN routes your traffic through another server, hiding your real IP from sites you visit. Tor adds stronger anonymity but is slower. Restarting your router sometimes assigns a new dynamic IP from your ISP.

Developer API

One curl-friendly endpoint to rule them all

Every route on this site is JSON-addressable. Wire it into a deploy script, a monitoring job, or a Slack bot in under a minute.

bash
$ curl ipferret.com/ip
216.73.217.104

$ curl ipferret.com/api/lookup | jq .geo.city
"Columbus"

$ curl -s ipferret.com/api/headers \
    | jq '.headers["user-agent"]'
"Mozilla/5.0"