YOUR IP ADDRESS IS:

3.238.180.174

IP Address Location Information For 3.238.180.174
IP Address3.238.180.174
Hostec2-3-238-180-174.compute-1.amazonaws.com
CountryUnited States
RegionVirginia
CityAshburn
Postal Code20149
Latitude39°02'48" N
Longitude77°29'25" W
Blacklist
Map Location For 3.238.180.174

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