Comprehensive Data
IPinfo.io provides detailed information about IP addresses, including geolocation, ISP details, and domain data, making it a robust tool for various applications.
Ease of Use
The API is easy to integrate and use, with straightforward documentation and quick response times, suitable for both beginners and advanced users.
Accuracy
IPinfo.io is known for its high accuracy in IP data, which is essential for businesses relying on precise geolocation information.
Scalability
The service offers tiered pricing and can handle a growing number of requests, making it ideal for businesses of all sizes.
Additional Features
Beyond basic IP geolocation, IPinfo.io offers features like hosted domains, IP ranges, and security details, adding more value to the service.
Promote ipinfo.io. You can add any of these badges on your website.
We have collected here some useful links to help you find out if ipinfo.io is good.
Check the traffic stats of ipinfo.io on SimilarWeb. The key metrics to look for are: monthly visits, average visit duration, pages per visit, and traffic by country. Moreoever, check the traffic sources. For example "Direct" traffic is a good sign.
Check the "Domain Rating" of ipinfo.io on Ahrefs. The domain rating is a measure of the strength of a website's backlink profile on a scale from 0 to 100. It shows the strength of ipinfo.io's backlink profile compared to the other websites. In most cases a domain rating of 60+ is considered good and 70+ is considered very good.
Check the "Domain Authority" of ipinfo.io on MOZ. A website's domain authority (DA) is a search engine ranking score that predicts how well a website will rank on search engine result pages (SERPs). It is based on a 100-point logarithmic scale, with higher scores corresponding to a greater likelihood of ranking. This is another useful metric to check if a website is good.
The latest comments about ipinfo.io on Reddit. This can help you find out how popualr the product is and what people think about it.
Import requests Resp = requests.get( f"https://ipinfo.io/{ip}/json", params={"token": IPINFO_TOKEN} ) Data = resp.json() Print(data["country"], data["city"], data["loc"]). - Source: dev.to / 3 months ago
IPinfo.io | Various Roles | Remote (Anywhere) | Fulltime / Partime / Contract | https://ipinfo.io IPinfo is a leading provider of IP address data, including geolocation, VPN and residential proxy detection, mobile carrier data, and over 20 other context tags. Our API handles over 120 billion requests per month, and we also license our data for use in many products and services youโve likely interacted with. Weโre... - Source: Hacker News / 2 months ago
# Real IP check Curl -s https://ipinfo.io # DNS leak check โ should show VPN provider resolver, not ISP Dig +short txt ch whoami.cloudflare @1.1.1.1 Nslookup -type=txt whoami.ds.akahelp.net # IPv6 leak (common on WireGuard if you forget ::/0) Curl -s -6 https://ipv6.icanhazip.com || echo "No v6 leak" # WebRTC โ browser-only, use https://browserleaks.com/webrtc. - Source: dev.to / 3 months ago
The original version used http://ip-api.com โ plain HTTP. On a cloud server, that traffic is unencrypted and could be intercepted and spoofed. I switched to https://ipinfo.io which supports HTTPS on the free tier. - Source: dev.to / 4 months ago
// API 1: ip-api.com (free, no key needed, 45 req/min) $response = $http->get("http://ip-api.com/json/{$ip}?fields=proxy,hosting"); If (!empty($data['proxy']) || !empty($data['hosting'])) { return true; // VPN/Proxy detected } // API 2: ipinfo.io (fallback) $response = $http->get("https://ipinfo.io/{$ip}/json"); // Check 'org' field for hosting/vpn/proxy keywords // API 3: ipapi.co (fallback) $response =... - Source: dev.to / 6 months ago
IPinfo.io | Various Roles | Remote (Anywhere) | Fulltime / Partime / Contract | https://ipinfo.io IPinfo is a leading provider of IP address data. Our API handles over 100 billion requests a month, and we also license our data for use in many products and services you might have used. We started as a side project back in 2013, offering a free geolocation API, and we've since bootstrapped ourselves to a profitable... - Source: Hacker News / about 1 year ago
Please bring back showing the my ip when I visit https://ipinfo.io directly, now it play a video a fixed IP, really confusing. - Source: Hacker News / about 1 year ago
1 point by coderholic 59 days ago | parent | context | prev | next | edit | delete [โ] | on: Ask HN: Who is hiring? (March 2025) IPinfo.io | Various Roles | Remote (Anywhere) | Fulltime / Partime / Contract | https://ipinfo.io IPinfo is a leading provider of IP address data. Our API handles over 100 billion requests a month, and we also license our data for use in many products and services you might have used. We... - Source: Hacker News / about 1 year ago
Async function checkVpnUsage() { const res = await fetch('https://ipinfo.io/json?token=YOUR_TOKEN'); const data = await res.json(); console.log('IP Info:', data); // Some services provide `privacy` or `proxy` fields if (data.privacy && (data.privacy.vpn || data.privacy.proxy)) { console.log('User is likely using a VPN or proxy.'); } else { console.log('No VPN/proxy detected.'); ... - Source: dev.to / about 1 year ago
> IP lookup is powered by https://ipinfo.io. They provide a good service so please don't spam requests. There was a thread about them recently โ the scale of their operation was very surprising. - Source: Hacker News / over 1 year ago
Just check https://ipinfo.io/ to see how close your IP points to your location. For most targeted content the city is good enough. And honestly if I'm one of 1 million people it's ok. - Source: Hacker News / over 1 year ago
If chatGPT knows your IP, which it does, then it can know your location, maybe through use of a service like https://ipinfo.io. - Source: Hacker News / over 1 year ago
Async function checkLocation(ipAddress) { const geoResponse = await fetch(https://ipinfo.io/${ipAddress}/json); const geoData = await geoResponse.json(); return geoData; } // Usage Const userIp = "192.0.2.1"; // Example IP CheckLocation(userIp).then(geoData => { console.log("User Location:", geoData); });. - Source: dev.to / almost 2 years ago
Import requests If __name__ == '__main__': # Define the proxy details proxyip = "http://username_custom_zone_US:password@us.swiftproxy.net:7878" # The URL to which the request will be made url = "http://ipinfo.io" # Set up the proxies dictionary proxies = { 'http': proxyip, 'https': proxyip, # Include HTTPS if you plan to use secure URLs } # Make a GET request... - Source: dev.to / almost 2 years ago
Where do we locate you? https://ipinfo.io/ If the location data is incorrect, you can always submit a correction with us: https://ipinfo.io/corrections. - Source: Hacker News / about 2 years ago
Note: You can check the quality of SOCKS5 or HTTPS proxy with companies like: https://ipinfo.io or whoer.net. - Source: dev.to / about 2 years ago
You need an access token from ipinfo to access their API. Go to ipinfo.io and sign up for an account. After signing up, you'll get an access token. Keep it handy as we'll need it in the next step. - Source: dev.to / over 2 years ago
Stories: - name: get-ip-info steps: - name: get-ip url: https://api.ipify.org/?format=json http_method: GET - name: get-location url: https://ipinfo.io/${{steps.get-ip.response.body.ip}}/geo http_method: GET expectations: - field: Body operation: Contains value: "Australia" schedule: initial_delay: 10 ... - Source: dev.to / over 2 years ago
IPinfo โ Fast, accurate, and free (up to 50k/month) IP address data API. Offers APIs with details on geolocation, companies, carriers, IP ranges, domains, abuse contacts, and more. All paid APIs can be trialed for free. - Source: dev.to / over 2 years ago
Mullvad VPN location set to Frankfurt germany Using the us east test server: Proxy Score: 10/100 - Very likely not a Proxy VPN Score: 0/55 - Very likely not a VPN Using german test server: Proxy Score: 10/100 - Very likely not a Proxy VPN Score: 30/55 - Very likely a VPN The thing that changed between both tests was the flow latencies vs ping latencies check. Clicking on more info it said: "flow variance too... - Source: Hacker News / over 2 years ago
If it's a work computer it may be connecting to it's own VPN automatically. If you go to a site like https://ipinfo.io/ do you recognize the external IP address, region, and org? Source: over 2 years ago
Do you know an article comparing ipinfo.io to other products?
Suggest a link to a post with product alternatives.
Is ipinfo.io good? This is an informative page that will help you find out. Moreover, you can review and discuss ipinfo.io here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.
I'm actively using ipinfo.io to get in depth information about an IP. For example, it's very easy to find the ASN, country, owner & network and what's the typical use of this IP. Their information seems quite up to date too.