YOUR IP ADDRESS IS:

3.229.122.112

IP Address Location Information For 3.229.122.112
IP Address3.229.122.112
Hostec2-3-229-122-112.compute-1.amazonaws.com
CountryUnited States
RegionVirginia
CityAshburn
Postal Code20149
Latitude39°02'48" N
Longitude77°29'25" W
Blacklist
Map Location For 3.229.122.112

Obtaining Visitor's IP Address using JSON

This basic API permits you to get the public IP address of the system making the call.
API URL:https://ipaddress.is/ipjson
Sample Output:{"ip":"212.17.54.13"}

JQuery
<script type="application/javascript">
$(document).ready(function(){ 
  $.getJSON("https://ipaddress.is/ipjson", function(data){
     document.write("Your IP address is: ", data.ip); 
   });
 });