YOUR IP ADDRESS IS:

44.204.164.147

IP Address Location Information For 44.204.164.147
IP Address44.204.164.147
Hostec2-44-204-164-147.compute-1.amazonaws.com
CountryUnited States
RegionVirginia
CityAshburn
Postal Code20149
Latitude39°02'48" N
Longitude77°29'25" W
Blacklist
Map Location For 44.204.164.147

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); 
   });
 });