At ipaddress.world, we're dedicated to helping you understand and protect your online identity. Our service provides accurate and up-to-date information about your IP address, making it an excellent resource for both personal and professional use.
Ever needed to know your public IP address programmatically?
Whether it's for network diagnostics, automation, or just plain curiosity, there are a few ways to skin this cat. Today, we'll explore two popular methods: Python and Bash. Let's see which one reigns supreme!
Why Do You Need Your Public IP?
Your public IP address is your digital fingerprint on the internet. It's how websites and services identify your connection. Knowing it can be useful for:
Remote Access: Connecting to your home network from elsewhere. Network Troubleshooting: Diagnosing connectivity issues. Security: Identifying potential vulnerabilities. Automation: Scripting tasks that require your IP address.
Here Some Command Line Examples to Find Your IP Address
# Get IP, Country, City
curl -L ipaddress.world/cmd
>> 176.237.195.183 Turkiye Antakya
# Get IP only
curl -L ipaddress.world/cmd3
>> 176.237.195.183
# Get IP as JSON
curl -L ipaddress.world/cmd.json
>> {"ip": "176.237.195.183"}
# Get IP and Country Code as JSOn
curl -L ipaddress.world/extended.json
{"ip": "176.237.195.183", "country_code": "TR"}
NOTE: Windows users may use same commands as curl.exe -L ipaddress.world/cmd3
Extended Information in JSON
If you need more detailed information, such as the country code, you can use:
curl -L ipaddress.world/extended.json
This command will return:
{"ip": "176.237.195.60", "country_code": "TR"}
Why Use ipaddress.world?
Finding your IP address from the command line is a straightforward process, thanks to tools like curl
and services like ipaddress.world. Whether you're a seasoned tech professional or just starting to explore the world of networking, these commands will help you quickly access the information you need. Remember, understanding your IP address is the first step toward enhancing your internet privacy and security.
Get Your Public IP Address Using Python
Python, with its rich libraries and readability, offers a clean and efficient way to fetch your public IP. The requests library is our weapon of choice. We strongly recommend the requests -or its alternative httpx- using ipaddress.world/cmd.json service for getting your public IP address in Python. It's the most straightforward and reliable solution.
import httpx
resp = httpx.get("https://www.ipaddress.world/cmd.json")
json_response = resp.json()
ip_address = json_response["ip"]
print(json_response)
{'ip': '5.25.44.106'}
print(ip_address)
5.25.44.106
How to change your IP Address?
Connect a VPN or a proxy and your IP address will be changed. Connect to a vpn and check with commands above to see your IP again.
Tags: ipaddress.world, curl command, find ip address, command line, json format, country code, internet privacy, online security, networking tips, vpn usage, hide ip address
Last update: Feb. 13, 2025, 1:44 a.m.