Start building with our IPstack API completely free. No credit card required, no hidden fees, no time limits. Subscribe for advanced features once you get the confidence.
//Get your Free API Key and start immediately
const response = await fetch('http://api.ipstack.com/check?access_key=YOUR_API_KEY');
const location = await response.json();
console.log(`Visitor from: ${location.city}, ${location.country_name}`);