We are a team of developers dedicated to providing you with the best tools and resources for your online security and privacy.
Retrieve detailed WHOIS information about an IP address.
GET /whois/{ip}
curl -X GET "https://ipwtf.com/api/whois"
{
"ipv4": {
"ip": "1.1.1.1",
"ipNumber": "16843009",
"ipVersion": 4,
"countryName": "Australia",
"countryCode": "AU",
"latitude": -27.467541,
"longitude": 153.028091,
"timeZone": "+10:00",
"zipCode": "4000",
"cityName": "Brisbane",
"regionName": "Queensland",
"as": "CloudFlare Inc.",
"asn": "13335",
"isProxy": 0
}
}
curl -X GET "https://ipwtf.com/api/whois/1.1.1.1"
{
"ipv4": {
"ip": "1.1.1.1",
"ipNumber": "16843009",
"ipVersion": 4,
"countryName": "Australia",
"countryCode": "AU",
"latitude": -27.467541,
"longitude": 153.028091,
"timeZone": "+10:00",
"zipCode": "4000",
"cityName": "Brisbane",
"regionName": "Queensland",
"as": "CloudFlare Inc.",
"asn": "13335",
"isProxy": 0
}
}
curl -X GET "https://ipwtf.com/api/whois/2606:4700:4700::1111"
{
"ipv6": {
"ip": "2606:4700:4700::1111",
"ipNumber": "50543257694033307102031451402929180945",
"ipVersion": 6,
"countryName": "United States of America",
"countryCode": "US",
"latitude": 37.774929,
"longitude": -122.419418,
"timeZone": "-08:00",
"zipCode": "94153",
"cityName": "San Francisco",
"regionName": "California",
"as": "CloudFlare Inc.",
"asn": "13335",
"isProxy": 0
}
}
Retrieve basic IP information.
GET /who/{ip}
curl -X GET "https://ipwtf.com/api/who"
{
"ip": "1.1.1.1",
"countryCode": "AU",
"countryName": "Australia"
}
curl -X GET "https://ipwtf.com/api/who/1.1.1.1"
{
"ip": "1.1.1.1",
"countryCode": "AU",
"countryName": "Australia"
}
The API supports multiple response formats. You can specify the format using the ?format=
query parameter. The default format is JSON.
Format | Description | Example |
---|---|---|
json (default) |
Returns the response in JSON format. | { "ip": "8.8.8.8", "countryCode": "US", "countryName": "United States" } |
xml |
Returns the response in XML format. | <response><ip>8.8.8.8</ip><countryCode>US</countryCode><countryName>United States</countryName></response> |
csv |
Returns the response in CSV format. | ip,countryCode,countryName 8.8.8.8,US,United States |
line |
Returns a plain text response with one key-value pair per line. | ip: 8.8.8.8 countryCode: US countryName: United States |
Here are examples of how to request different response formats:
/api/whois/8.8.8.8
/api/whois/8.8.8.8?format=xml
/api/whois/8.8.8.8?format=csv
/api/whois/8.8.8.8?format=line