ip-geolocation-api-jquery

1.0.0 • Public • Published

IP Geolcation API JQuery

Overview

IP Geolocation API provides country, city, region, local currency, latitude and longitude, company detail, ISP lookup, country calling code, timezone, country neighbours, country flag, country capital and much more from any IPv4 and IPv6 address in Newline, JSON and XML format over HTTPS. This document provides important information to help you get up to speed with IP Location API using IP Geolocation API JQuery SDK.

Quick Start Guide

You can call the API by sending HTTP GET requests to http://free.ipwhois.io/json/{IP}

{IP} can be an IPv4 or IPv6 address, or none to use the current IP address.

Note: Complete documentation to use this API is also available at IP Geolocation API Documentation.

System Requirements

Internet connection is required to run this component.

Basic Usage

Call method request_ipwhois($ip, $lang) passing IP address or none to use the current IP address as parameters (rest of the parameters are optional) and it will return the Geolocation for the passed IP address. To customize the geolocation response, you can pass the other parameters to request_ipwhois() method as described below:

  • $lang

    Pass the language parameter to get the geolocation information in a language other than English. By default, it is set to English language.
    ipwhois provides response in the following languages:
    • en - English (default)
    • de - Deutsch (German)
    • es - Español (Spanish)
    • pt-BR - Español - Argentina (Spanish)
    • fr - Français (French)
    • ja - 日本語 (Japanese)
    • zh-CN - 中国 (Chinese)
    • ru - Русский (Russian)

Installation

CDN Link

Add the following script in your HTML page:

<script src="https://cdn.ipwhois.io/js/ipwhois.js"></script>

Example

Here is a sample code to use IP Geolocation API using JQuery SDK:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.ipwhois.io/js/ipwhois.js"></script>
 
<script>    
    $(document).ready(function() {
        var ipaddress = "";
        var ipwhois = request_ipwhois(ipaddress);
        alert("Country: " + ipwhois.country);
        alert("City: " + ipwhois.city);
        alert("Region: " + ipwhois.region);
    });
</script>

Dependents (0)

Package Sidebar

Install

npm i ip-geolocation-api-jquery

Homepage

ipwhois.io/

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

3.79 kB

Total Files

3

Last publish

Collaborators

  • ipwhoisio