Get My IP Address

Get your public IP address using the ipify API.

Code

Utilities
const response = await fetch('https://api.ipify.org?format=json');
const { ip } = await response.json();
Browser·fetch() may be limited by CORS

More JavaScript Snippets