🌓

geoipme.dev

A simple service to get your IP address and country code

About

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.

Endpoints

JSON Format

â–¼
GET /json

Returns your IP and country code in JSON format.

{"country_code": "US", "ip": "203.0.113.1"}
Try it

Plain Text Format

â–¼
GET /plain

Returns your IP and country code in plain text format.

203.0.113.1 US
Try it

Country Code Only

â–¼
GET /plain/country_code

Returns only your country code in plain text format.

US
Try it

IP Address Only

â–¼
GET /plain/ip

Returns only your IP address in plain text format.

203.0.113.1
Try it

Usage Examples

Shell Alias

# 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

curl https://geoipme.dev/json

JavaScript

fetch('https://geoipme.dev/json')
  .then(response => response.json())
  .then(data => console.log(data));