IP Address Lookup Online Free

🌐 Network and Web Free Forever

IP Address Lookup Online Free

Your IP address is detected automatically. Enter any IP to look up its geolocation, country, city and ISP.

Enter an IP address or domain, or press My IP to look up your own connection.

How accurate is this really. IP geolocation maps an address block to wherever the network operator registered it. Country is right almost all the time. City is right often enough to be useful and wrong often enough that you should not rely on it. Street level accuracy does not exist, whatever any service claims, and the coordinates shown here are the centre of a region rather than anyone’s location.

Mobile and VPN connections skew badly. A phone on mobile data often reports the city where the carrier’s gateway sits, which can be hundreds of miles away. VPNs report the exit server. Neither is an error, it is what the address genuinely belongs to.

Nothing is stored. Lookups run from your browser directly against public geolocation services. We keep no log of what you search, and the recent list lives only in this tab until you close it.

About This Tool

How the IP lookup tool turns an address into a place, a network, and a timezone

An IP address alone tells you nothing readable. It is a number assigned to a network interface, and mapping that number to a country, city, or internet provider requires a geolocation database that somebody has to build and maintain by correlating IP address blocks against regional internet registry allocation records. This tool does not maintain that database itself. It queries a third party API that does.

The request, in full

Every lookup, whether you type an address or click the automatic option, calls the same public API from ipapi.co directly from your browser.

// the exact request the tool sends, from the source var url = ‘https://ipapi.co/’ + (query ? encodeURIComponent(query) + ‘/’ : ) + ‘json/?fields=all’; fetch(url) .then(function(r) { return r.json(); }) .then(function(d) { render(d); });

Leave the address field blank and click Look up and the query segment of the URL is empty, which tells ipapi.co to geolocate whichever IP address the request itself arrived from, meaning your own connection’s public IP as seen by their server. That is how the my IP button and the automatic result on page load both work. There is no separate mechanism for detecting your own address, it is simply the same lookup with nothing to look up but yourself.

Where the data actually comes from

Step 1 Input validation Whatever you type is checked against three patterns in order: a dotted decimal IPv4 pattern with each octet capped at 255, a loose IPv6 check that just looks for a colon, and a domain name pattern as a fallback, since ipapi.co also resolves domains before geolocating them.
Step 2 Request to ipapi.co Your browser sends the request directly, meaning the address or domain you entered is transmitted to ipapi.co’s servers, a third party service unaffiliated with this site, over HTTPS.
Step 3 Registry and geo database matching ipapi.co matches the address against IP block allocation data published by the five regional internet registries, ARIN, RIPE NCC, APNIC, LACNIC, and AFRINIC, combined with commercial geolocation datasets, to resolve country, region, city, ISP, and autonomous system number.
Step 4 Render and flag rendering The JSON response is mapped into a results card. The two letter country code is converted into a flag emoji by adding a fixed offset to each letter’s character code, landing on the Unicode Regional Indicator Symbol block, which is how flags render without any image assets.
Field returnedWhat it represents
country_name, country_codeRegistry allocated country for the address block
city, region, postalEstimated location, accuracy varies widely by ISP and address type
org, asnThe internet service provider or hosting company and its autonomous system number
timezone, utc_offsetIANA timezone name and current UTC offset for that location
latitude, longitudeApproximate coordinates, linked to a Google Maps view in the results
currency, languages, in_euCountry level metadata unrelated to the network itself
City level accuracy is not guaranteed. IP geolocation is reliably accurate at the country level and usually accurate at the region level, but city level results can be off by tens or even hundreds of kilometres, especially for mobile carrier addresses, VPN exit nodes, and corporate networks where the address registered to an ISP’s head office is reused across an entire region. Treat the city field as a rough estimate, not a precise location.

The two things this is not measuring

Not a live network trace

This is a single database lookup, not a traceroute. It tells you who owns the address block and roughly where it is registered, not the path packets take to reach it.

Not device identification

The address identifies a network connection point, commonly a router or a carrier gateway, not a specific device or person. Multiple devices on the same home or office network share one public IP.

ipapi.co third party API IPv4, IPv6, and domain input Regional internet registry data
  • ipapi.co API documentation lists every field this tool can return and its free tier request limits.
  • IANA number resources is the root allocation authority above the five regional registries.
  • ARIN is the regional registry for North America, one of the five sources this kind of data traces back to.
  • IANA Time Zone Database is the source for the timezone names returned in results.

What an IP address reveals

Checking which country a suspicious login attempt originated from, confirming a VPN connection actually shows an exit location in the expected country, diagnosing why a website is serving the wrong regional content or currency to a visitor, identifying the hosting provider behind an unfamiliar server address, and quickly confirming your own public facing IP when configuring firewall rules or remote access.

Common Questions

Questions about IP address lookup online free

Yes. Completely free with no signup. Lookups use a public geolocation API.

Country-level accuracy is typically above 95%. City-level accuracy varies and may be off by tens of kilometres for some IPs.

Yes. Enter any valid IPv4 or IPv6 address and the tool returns the same geolocation data.

IP geolocation is based on data provided by ISPs and may not reflect your exact location. VPNs and proxies show the location of the exit server.

No. Lookups are made directly from your browser to the geolocation API. No data is stored on ConvertNow servers.

Privacy Overview

Cookies let this site remember your preferences and show us which tools people actually use. Full detail sits in our Privacy Policy.