Get Client IP Address

Get your public IP address and request origin information.

Code

Utilities
const response = await fetch('https://httpbin.org/ip');
await response.json();
Browser·fetch() may be limited by CORS

More Details

// Get full request info including headers
const response = await fetch('https://httpbin.org/get');
const data = await response.json();
// data.origin - IP address
// data.headers - All headers sent
// data.url - Full URL requested

More JavaScript Snippets