Software Alternatives, Accelerators & Startups
ipapi

ipapi Reviews and Details

This page is designed to help you find out whether ipapi is good and if it is the right choice for you.

Screenshots and images

  • ipapi Landing page
    Landing page //
    2022-06-20

Features & Specs

  1. Comprehensive Data

    ipapi offers a wide range of data points such as geographic location, time zone, currency, and security-related information, which can be useful for various applications.

  2. Real-time Updates

    The API provides real-time updates, ensuring that the information obtained is current and accurate.

  3. Easy Integration

    The API is designed to be developer-friendly with a simple and straightforward integration process, supported by extensive documentation.

  4. Scalability

    ipapi is built to handle a high volume of requests, making it suitable for businesses of all sizes.

  5. Security Features

    Provides security-related data such as whether the IP address is a proxy, crawler, or threat, helping to improve the security of your application.

Badges

Promote ipapi. You can add any of these badges on your website.

SaaSHub badge
Show embed code

Videos

How to use the Ipapi API to find information about IP addresses

IPAPI

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about ipapi and what they use it for.
  • Building a CMS-Level Firewall: Why Application Context Matters
    // 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 / 7 months ago
  • 20 Free Api For Your Next Project
    IPapi - Service that provides you an info about an IP address. - Source: dev.to / about 2 years ago
  • A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev
    Ipapi - IP Address Location API by Kloudend, Inc - A reliable geolocation API built on AWS, trusted by Fortune 500. The free tier offers 30k lookups/month (1k/day) without signup. - Source: dev.to / over 2 years ago
  • Lookout! VPN Brute Force Attempts from 109.206.242.48
    Yeah still confused as to where you are getting https://www.criminalip.io/en and https://ipapi.co/ from iplocation.net (which I use all the time to also get GEO-IP location). Source: about 3 years ago
  • Lookout! VPN Brute Force Attempts from 109.206.242.48
    I would suggest reaching out to this company https://www.criminalip.io/en as well as this company. https://ipapi.co/. Source: about 3 years ago
  • App suddenly started returning 404 not found after I allowed some firewall permission
    Import requests From flask import Flask, request, jsonify App = Flask(__name__) @app.route('/api', methods = ['Get']) Def index(): d = {} inputpro = str(request.args['query']) url = f'https://ipapi.co/{inputpro}/json/' r = requests.get(url) t = r.json() y= t['country_name'] d['output'] = y return d If __name__== '__main__': app.run(). Source: over 3 years ago
  • Mosint Email research
    - ipapi.co for getting information about domains: Not really useful, only for company emails. Source: over 3 years ago
  • Integrate third-party services within Laravel
    Namespace App\Services\Geolocator; Use App\Contracts\Geolocator; Use App\DTOs\Geolocation; Class IpApi implements Geolocator { public function locate(string $ip): Geolocation { $response = file_get_contents("https://ipapi.co/$ip/json/"); $location = json_decode($response, true); return new Geolocation($ip, $location["city"], $location["country"], $location["timezone"], $location["org"]); } }. - Source: dev.to / over 3 years ago
  • free-for.dev
    Ipapi - IP Address Location API by Kloudend, Inc - A reliable geolocation API, built on AWS, trusted by Fortune 500. Free tier offers 30k lookups/month (1k/day) without signup. Contact us for a higher limit trial plan. - Source: dev.to / over 3 years ago
  • Trying to track down a weird location issue (google thinks I'm in Iran)
    You can try doing a geolocation lookup on your IP address' with a tool like https://ipapi.co. Source: about 4 years ago
  • IP Location Grabbing
    Instead of sending a request to https://ipapi.co/json, we'll send a request to https://ipapi.co/{ip}/json, where {ip} is the IP that you extracted from the incoming user's request. This would look like, for example, https://ipapi.co/89.238.130.72/json/. You should probably use axios for server side requests, so follow the example above on how to make the GET request. - Source: dev.to / about 4 years ago
  • networkmanager-openvpn ignores route-nopull
    I don't need to obscure it, because it's a cloudflare's ip. FYI, I tried to connect on https://ipapi.co/. The 62.141 ip's are one from the server provider. Source: about 4 years ago
  • Weird thing Happening rn?
    Https://ipapi.co/ Detects my location right. Source: over 4 years ago
  • ipapi.co
    We're running an evebox and in that evebox I see dns request to ipapi.co or. Source: over 4 years ago
  • [ANN] wethr - Command line weather tool
    Location provider (ip-api.com, ipapi.co, ipwhois.app and freegeoip.app). Source: almost 5 years ago
  • Free for dev - list of software (SaaS, PaaS, IaaS, etc.)
    Ipapi - IP Address Location API by Kloudend, Inc - A reliable geolocation API, built on AWS, trusted by Fortune 500. Free tier offers 30k lookups/month (1k/day) without signup. Contact us for a higher limit trial plan. - Source: dev.to / almost 5 years ago
  • Custom Maps using React Leaflet and Mapbox
    // @src/hooks/index.jsx Import { useState, useEffect } from "react"; Import axios from "axios"; Export const useMap = () => { const [position, setPosition] = useState({ lat: 47.21725, lng: -1.55336, }); useEffect(() => { navigator.geolocation.getCurrentPosition( ({ coords }) => { setPosition({ lat: coords.latitude, lng: coords.longitude }); }, (blocked) => { if... - Source: dev.to / about 5 years ago
  • Discovering client location with public APIs
    Whatever, with APIs like ipapi.co you can ask to the client's browser to make a request to another platform and they will be responsible to do the rest for you. So if you're a beginner here, please pay attention: when I say "client's browser" it means it wouldn't work from back-end - because the request would be made by your server. But it's possible to do that on the back if you got the client's IP. - Source: dev.to / about 5 years ago
  • ip web scrape
    Os.system("clear") Print("This is a script (made by me) that finds quite a lot of information about an IP address.") Print("Remember you can never find someones exact location with their IP") Print("Please type the target IP address.") Print("-") Ip = input("IP address: ") Print("-") Agent = {"User-Agent": 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115... Source: about 5 years ago
  • ip web scrape
    Import requests From bs4 import BeautifulSoup Import os Def lookup(): os.system("clear") print("This is a script (made by me) that finds quite a lot of information about an IP address.") print("Remember you can never find someones exact location with their IP") print("Please type the target IP address.") print("-") ip = input("IP address: ") print("-") agent = {"User-Agent":... Source: about 5 years ago
  • i wrote an IP tracker (in python)
    A very basic wrapper around ipapi.co. Now add some tests and refactor the code ;). Source: over 5 years ago

Do you know an article comparing ipapi to other products?
Suggest a link to a post with product alternatives.

Suggest an article

ipapi discussion

Log in or Post with

Is ipapi good? This is an informative page that will help you find out. Moreover, you can review and discuss ipapi 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.