IP Info
Find details about your IP address or search for any IP worldwide.
API Documentation
Access this tool programmatically using our public API.
Get your IP info
GET
/api/tools/ip-info
Returns details about the current visitor's IP address.
Example
Response:
{ "ip": "102.47.22.11", "city": "Cairo", "country": "Egypt", "region": "Cairo Governorate", "timezone": "Africa/Cairo", "isp": "TE Data", "organization": "TE Data", "latitude": 30.0507, "longitude": 31.2489, "zipCode": "11511", "asn": "AS8452" }
Lookup specific IP
GET
/api/tools/ip-info/{ip}
Returns details for the given IP address. Replace {ip}
with the target
IP
address.
Example
Request:
Example
Response:
GET /api/tools/ip-info/8.8.8.8
{ "ip": "8.8.8.8", "city": "Ashburn", "country": "United States", "region": "Virginia", "timezone": "America/New_York", "isp": "Google LLC", "organization": "Google Public DNS", "latitude": 39.03, "longitude": -77.5, "zipCode": "20149", "asn": "AS15169" }
Usage Notes
- • All responses are in JSON format
- • Rate limiting: 100 requests per minute per IP
- • Both IPv4 and IPv6 addresses are supported
- • CORS is enabled for all origins
- • No authentication required for public endpoints