Map Location For 3.238.180.174 | |
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"}
<script type="application/javascript">
$(document).ready(function(){
$.getJSON("https://ipaddress.is/ipjson", function(data){
document.write("Your IP address is: ", data.ip);
});
});