A simple service to get your IP address and country code
geoipme.dev is a lightweight service that returns your current IP address and country code in different formats. Use it in your applications or scripts when you need to know a user's location or IP address.
Returns your IP and country code in JSON format.
{"country_code": "US", "ip": "203.0.113.1"}
# Add to your .bashrc, .zshrc, or equivalent shell config file alias myip='echo "$(curl -s https://geoipme.dev/plain)"' # After reloading your shell config, simply type: myip # Output: 203.0.113.1 US
curl https://geoipme.dev/json
fetch('https://geoipme.dev/json') .then(response => response.json()) .then(data => console.log(data));