Software Alternatives & Reviews

Integrate third-party services within Laravel

ipinfo.io ipapi
  1. Simple IP address information.
    Pricing:
    • Open Source
    After a while, you found IPInfo to have all the requirement you need and a generous free plan.

    #IP Data #Geolocation #IP Geolocation 210 social mentions

  2. 2
    Web analytics with IP address lookup and location API
    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"]); } }.

    #Geolocation #IP Data #IP Geolocation 20 social mentions

Discuss: Integrate third-party services within Laravel

Log in or Post with