ipinfo.im
Your Public IP Address::216.73.216.39
United States Ohio Columbus AMAZON-02
🌍 Geolocation
United
🏢 ISP Provider
AMAZON-02
🖥️ Browser
Unknown
💻 Operating System
Unknown
📖 API Usage Guide
🚀 Basic Usage
Bash Example
curl ipinfo.im
216.73.216.39
🔧 Get JSON Information
Bash Example
curl ipinfo.im/json
{
"ip": "216.73.216.39",
"location": "United States Ohio Columbus",
"isp": "AMAZON-02",
"time": "2025-08-25 19:31:25"
}
📋 Available APIs
Endpoint | Description | Example |
---|---|---|
/ | Only returns IP | curl ipinfo.im |
/json | Returns JSON | curl ipinfo.im/json |
✨ Features
- 🚀 Fast Response
- 🔒 No Authentication
- 🌍 Accurate Geolocation
- 📱 Supports curl / Python / Scripts
🛠️
Bash Example
#!/bin/bash MY_IP=$(curl -s ipinfo.im) echo "My IP is: $MY_IP"
Python Example
import requests data = requests.get("https://ipinfo.im/json").json() print(data["ip"])