resources background

Tutorial

How to Perform an IP WHOIS Lookup

Written By Qasim, WhoisFreaks Team Published: June 05, 2026, Last Updated: June 09, 2026

Introduction

An IP WHOIS lookup tells you who owns an IP address: the organization, the ISP or hosting provider, the assigned ASN, the network block, and the abuse contact, pulled from the Regional Internet Registry that allocated the address. Security analysts run it as the first pivot on a suspicious IP. Network engineers use it to confirm block ownership. Abuse teams use it to find the right reporting contact.

This guide shows you three ways to run an IP WHOIS lookup and how to read the result:

  • The free WhoisFreaks IP WHOIS Lookup tool, with no account needed
  • The IP WHOIS API, for automation and SIEM enrichment
  • Bulk database access, for large-scale analysis

It also explains the five Regional Internet Registries and every field an IP WHOIS record returns.

What Is an IP WHOIS Lookup?

An IP WHOIS lookup returns the public allocation record for an IP address or subnet: the organization the block is assigned to, the ISP or hosting provider operating it, the ASN, the country of allocation, and the abuse contact. The record is published by the Regional Internet Registry that controls that address space.

Two distinctions matter before you run one.

Domain WHOIS and IP WHOIS answer different questions. Domain WHOIS shows who registered a domain name through a registrar. IP WHOIS shows who an RIR allocated a block of addresses to. The same company can hold one IP allocation covering thousands of addresses while running hundreds of separate domains, so the two records rarely point at the same owner.

IP WHOIS and IP geolocation are also different. Geolocation estimates where an address is being used. IP WHOIS reports who the address is registered to and which RIR governs it. The country in a WHOIS record is the allocating registry's region, not the physical location of the device.

WhoisFreaks routes every query to the correct registry automatically, so you do not need to know in advance which RIR holds the block.

World map of the five Regional Internet Registries and the regions each one covers

The Five Regional Internet Registries (RIRs)

IP address allocations are not managed by a single central authority. Instead, the internet is divided into five geographic regions, each with its own RIR responsible for managing IP address allocation within that region. Regional rules set by each RIR govern how IP addresses are allocated and managed, ensuring that the distribution of internet number resources follows specific policies for each region. When you perform an IP WHOIS lookup, the data comes from whichever RIR manages the block containing the queried IP.

IP address blocks are not handed out by a single authority. The Internet Assigned Numbers Authority distributes them to the five Regional Internet Registries, which then allocate smaller blocks to ISPs and organizations in their regions: ARIN for North America, RIPE NCC for Europe and the Middle East, APNIC for Asia-Pacific, LACNIC for Latin America and the Caribbean, and AFRINIC for Africa. When you run an IP WHOIS lookup, the record comes from whichever RIR manages the block containing the queried address.

When you use the lookup tool, it helps identify IP address ownership and the allocation of internet number resources, including the assignment of IP addresses allocated to ISPs and end user organizations. The IP address's location shown in WHOIS data refers to the region or country of the allocating RIR, not necessarily the physical location of the device using the IP.

Here is a breakdown of each:

RIR Full Name Region Covered WHOIS Server
ARIN American Registry for Internet Numbers North America, parts of the Caribbean whois.arin.net
RIPE NCC Reseaux IP Europeans Network Coordination Centre Europe, Middle East, Central Asia whois.ripe.net
APNIC Asia-Pacific Network Information Centre Asia-Pacific whois.apnic.net
LACNIC Latin America and Caribbean Network Information Centre Latin America, Caribbean whois.lacnic.net
AFRINIC African Network Information Centre Africa whois.afrinic.net

When you run an IP WHOIS lookup through WhoisFreaks, the tool performs real-time queries against live RIR databases and delivers well-structured results for both IPv4 and IPv6. You do not need to know which RIR manages a given IP. The tool handles the routing automatically and returns the correct record from the right source.

How to Perform an IP WHOIS Lookup: Step-by-Step Guide

An IP WHOIS lookup queries a registry database over the WHOIS protocol, defined in RFC 3912, which runs on TCP port 43. There are three ways to run one with WhoisFreaks: the free web tool, the IP WHOIS API for programmatic access, and bulk lookup for large IP lists. Most registries now also serve this data over RDAP, the IETF protocol created as the standardized successor to WHOIS, which returns structured JSON.

Method 1: Using the WhoisFreaks IP WHOIS Lookup Tool (Free)

The quickest way to look up any IP address is through the WhoisFreaks free web tool. No account or API key is needed.

Step 1: Navigate to the Tool

Go to WhoisFreaks IP WHOIS Lookup tool / free IP WHOIS Lookup tool

Step 2: Enter the Given IP Address

Type the given IP address you want to look up into the search field. The tool supports both IPv4 (e.g., 8.8.8.8) and IPv6 addresses (e.g., 2001:4860:4860::8888).

For example:
8.8.8.8
or an IPv6 address:
2001:4860:4860::8888

Click Search to run the lookup. WhoisFreaks queries the appropriate live RIR database in real time and returns the structured WHOIS record.

Step 4: Review the Results

The results page displays all IP WHOIS fields in a structured, readable format including the organization name, IP block range, CIDR notation, ASN, country, RIR source, and all administrative, technical, and abuse contacts.

Step 5: Sign In for Latest Data

For the most up-to-date records, sign into your WhoisFreaks account. Signed-in users receive live, real-time data directly from the RIR databases rather than cached results.

Screenshot of the WhoisFreaks IP WHOIS Lookup tool showing a sample result for a well-known IP with all fields visible.

Method 2: Using the WhoisFreaks IP WHOIS API (Programmatic)

For security automation, SIEM enrichment, or building IP intelligence into your own applications, the IP WHOIS API is the right approach.

The IP WHOIS API provides detailed IP address information including registration data, organization details, administrative, technical, and abuse contacts, as well as routing and network information. The API utilizes the Registration Data Access Protocol (RDAP) to provide standardized registration data from various registries. RDAP responses are returned in JavaScript Object Notation (JSON), a machine-readable format, or in XML.

API Endpoint:

https://api.whoisfreaks.com/v1.0/ip-whois?apiKey=YOUR_API_KEY&ip=1.1.1.1

Key Parameters:

Parameter Description Example
ip The IPv4 or IPv6 address to query 8.8.8.8
apiKey Your API key for authentication YOUR_API_KEY
format Response format (JSON or XML) json

Two formats are available: JSON and XML. If you do not specify the format parameter, the default format will be JSON.

Authentication: Getting Your API Key

Every request to the WhoisFreaks API requires authentication using an API key. Here is how to get started:

Step 1: Create a Free Account

Create a free account by signing up. New accounts receive 500 free API credits with no credit card required.

Step 2: Access Your API Key

After signing in, navigate to API Solutions under PRODUCTS and then to the API Keys section. Your unique/primary API key will be displayed there. Copy it and store it securely.

WhoisFreaks billing dashboard showing where to copy your API key under API Solutions

For further details on account creation and getting the API key, you can follow tutorial: Getting Started with WhoisFreaks.

Step 3: Add Your API Key to Requests

Append your API key to every request as a query parameter:

?apiKey=YOUR_API_KEY

Sample Response:

{
  "status": true,
  "ip_address": "1.1.1.1",
  "query_time": "2026-05-18 09:35:07",
  "whois_server": "whois.apnic.net",
  "inet_nums": [
    {
      "start_ip": "1.1.1.0",
      "end_ip": "1.1.1.255",
      "cidr": [
        "1.1.1.0/24"
      ],
      "net_name": "APNIC-LABS",
      "description": [
        "APNIC and Cloudflare DNS Resolver project",
        "Routed globally by AS13335/Cloudflare",
        "Research prefix for APNIC Labs"
      ],
      "countries": [
        "AU"
      ],
      "status": "ASSIGNED PORTABLE",
      "organization": "ORG-ARAD1-AP",
      "remarks": [
        "---------------",
        "All Cloudflare abuse reporting can be done via",
        "[email protected]",
        "---------------"
      ],
      "mnt_by": [
        "APNIC-HM"
      ],
      "mnt_lower": [
        "MAINT-APNICRANDNET"
      ],
      "mnt_routes": [
        "MAINT-APNICRANDNET"
      ],
      "mnt_irt": [
        "IRT-APNICRANDNET-AU"
      ],
      "date_updated": "2023-04-26",
      "source": "APNIC"
    }
  ],
  "irt": {
    "handle": "IRT-APNICRANDNET-AU",
    "address": [
      "PO Box 3646",
      "South Brisbane, QLD 4101",
      "Australia"
    ],
    "state": "QLD",
    "zip_code": "4101",
    "country": "AUSTRALIA",
    "email": [
      "[email protected]"
    ],
    "abuse_mailbox": [
      "[email protected]"
    ],
    "admin_contacts": [
      "AR302-AP"
    ],
    "tech_contacts": [
      "AR302-AP"
    ],
    "remarks": [
      "[email protected] was validated on 2021-02-09"
    ],
    "mnt_by": [
      "MAINT-APNICRANDNET"
    ],
    "date_updated": "2025-11-18",
    "source": "APNIC"
  },
  "organization": {
    "handle": "ORG-ARAD1-AP",
    "name": "APNIC Research and Development",
    "type": "LIR",
    "address": [
      "6 Cordelia St"
    ],
    "street": "Cordelia St",
    "country": [
      "AU"
    ],
    "email": [
      "[email protected]"
    ],
    "phone": [
      "+61-7-38583100"
    ],
    "fax_no": [
      "+61-7-38583199"
    ],
    "mnt_ref": [
      "APNIC-HM"
    ],
    "mnt_by": [
      "APNIC-HM"
    ],
    "date_updated": "2023-09-05",
    "source": "APNIC"
  },
  "administrative_contacts": [
    {
      "handle": "AIC3-AP",
      "name": "APNICRANDNET Infrastructure Contact",
      "address": [
        "6 Cordelia St",
        "South Brisbane",
        "QLD 4101"
      ],
      "street": "Cordelia St",
      "state": "QLD",
      "zip_code": "4101",
      "country": "AU",
      "email": [
        "[email protected]"
      ],
      "phone": [
        "+61 7 3858 3100"
      ],
      "admin_contacts": [
        "AIC3-AP"
      ],
      "tech_contacts": [
        "AIC3-AP"
      ],
      "mnt_by": [
        "MAINT-APNICRANDNET"
      ],
      "date_updated": "2024-07-18",
      "source": "APNIC"
    }
  ],
  "technical_contacts": [
    {
      "handle": "AIC3-AP",
      "name": "APNICRANDNET Infrastructure Contact",
      "address": [
        "6 Cordelia St",
        "South Brisbane",
        "QLD 4101"
      ],
      "street": "Cordelia St",
      "state": "QLD",
      "zip_code": "4101",
      "country": "AU",
      "email": [
        "[email protected]"
      ],
      "phone": [
        "+61 7 3858 3100"
      ],
      "admin_contacts": [
        "AIC3-AP"
      ],
      "tech_contacts": [
        "AIC3-AP"
      ],
      "mnt_by": [
        "MAINT-APNICRANDNET"
      ],
      "date_updated": "2024-07-18",
      "source": "APNIC"
    }
  ],
  "abuse_contacts": [
    {
      "handle": "AA1412-AP",
      "name": "ABUSE APNICRANDNETAU",
      "address": [
        "PO Box 3646",
        "South Brisbane, QLD 4101",
        "Australia"
      ],
      "state": "QLD",
      "zip_code": "4101",
      "country": "ZZ",
      "email": [
        "[email protected]"
      ],
      "abuse_mailbox": [
        "[email protected]"
      ],
      "phone": [
        "+000000000"
      ],
      "admin_contacts": [
        "AR302-AP"
      ],
      "tech_contacts": [
        "AR302-AP"
      ],
      "remarks": [
        "Generated from irt object IRT-APNICRANDNET-AU",
        "[email protected] was validated on 2021-02-09"
      ],
      "mnt_by": [
        "APNIC-ABUSE"
      ],
      "date_updated": "2025-05-28",
      "source": "APNIC"
    }
  ],
  "routes": [
    {
      "route": "1.1.1.0/24",
      "origin": "AS13335",
      "description": [
        "APNIC Research and Development",
        "6 Cordelia St"
      ],
      "mnt_by": [
        "MAINT-APNICRANDNET"
      ],
      "date_updated": "2023-04-26",
      "source": "APNIC"
    }
  ],
  "whois_raw_response": "DETAILED_RAW_RESPONSE"
}

To query a different IP, simply replace 8.8.8.8 with any IPv4 or IPv6 address you wish to investigate.

Method 3: IP WHOIS Database (Bulk Data Access)

For large-scale analysis, offline processing, or building internal threat intelligence systems, you can use the WhoisFreaks IP WHOIS Database.

This option provides downloadable datasets containing historical and structured IP WHOIS records.

Database access and pricing

Sample dataset download

What It's Used For

  • Bulk IP intelligence analysis
  • Security and threat hunting
  • SIEM / SOC data enrichment
  • Historical WHOIS record tracking
  • Offline processing pipelines

What Does an IP WHOIS Record Contain?

The IP WHOIS database contains ownership details, registration information, and abuse contact details for each IP block. When you perform a lookup, the IP WHOIS information you receive includes registration information such as the registered organization or individual's details, mailing address, registration dates, and abuse contact details. This data is essential for identifying the owner of an IP address, understanding its allocation history, and reporting malicious activity.

Here is a full breakdown of every field you will see in an IP WHOIS response:

Field Description Why It Matters
IP Address The queried IP address Primary identifier for lookup
Network Name Name assigned to the IP block or netrange Helps identify the allocation at a glance
IP Range Start and end IP addresses of the allocation Defines the full scope of the block
CIDR Notation Compact representation of the IP range (e.g., /24) Used in routing, filtering, and firewall rules
Organization Entity or company holding the IP allocation Identifies ownership or responsibility
Organization Handle Registry identifier for the organization Used for cross-referencing in WHOIS databases
Country Country associated with the IP allocation Provides geographic context
ASN Autonomous System Number associated with the network Identifies routing domain on the internet
RIR Source Regional Internet Registry managing the allocation Indicates authority over the IP block
Abuse Contact Email or phone for reporting abuse Used for security and abuse reporting
Administrative Contact Contact responsible for administrative matters For policy and ownership changes
Technical Contact Contact responsible for technical operations For network and infrastructure issues
Registration Date Date the IP block was first registered Helps understand allocation history
Last Updated Date of most recent WHOIS update Indicates freshness of record data
Status Allocation status (e.g., assigned, allocated, reserved) Shows how the IP block is currently used
Annotated IP WHOIS record showing labeled fields: organization, CIDR, ASN, RIR, and abuse contact

Conclusion

An IP address on its own is just a number. An IP WHOIS lookup turns it into something you can act on: the owning organization, the ISP, the ASN, the network block, and the abuse contact, sourced from the Regional Internet Registry that manages that address space.

For a security analyst, it is the first pivot after a suspicious IP is flagged. For a network engineer, it is ground truth for routing verification. For an abuse team, it is the direct line to the right contact. For an OSINT investigator, it is a link between infrastructure and attribution.

Start with the free tool for a single lookup, move to the API when you need to enrich a SIEM or process a feed, and use the database when you need scale.

Ready to perform an IP WHOIS lookup?

Run a free IP WHOIS lookup now

Frequently Asked Questions

Explore frequently asked questions to better understand our features, functionality, and usage.

What is an IP WHOIS lookup?

An IP WHOIS lookup retrieves the registration and ownership information for an IP address or IP range. It returns details about the organization that owns the IP block, the ISP, the ASN, the abuse contact, and the Regional Internet Registry that manages the allocation.

What information does an IP WHOIS lookup return?

An IP WHOIS record typically includes the organization or ISP that owns the IP block, the allocated IP range in CIDR notation, abuse contact email and phone, the RIR that manages the block, country of allocation, and creation and updated dates.

Does IP WHOIS support IPv6?

Yes. The IP WHOIS Lookup tool supports both IPv4 (e.g., 8.8.8.8) and IPv6 addresses (e.g., 2001:4860:4860::8888).

Where does IP WHOIS data come from?

IP WHOIS records are published by the five Regional Internet Registries that allocate address space: ARIN, RIPE NCC, APNIC, LACNIC, and AFRINIC. Each one governs a different region. WhoisFreaks queries the relevant registry live for every lookup, so the record reflects the current allocation rather than a cached copy.

How is IP WHOIS useful for cybersecurity?

When an alert fires for a suspicious IP in your firewall logs, SIEM, or intrusion detection system, IP WHOIS is the first pivot. It tells you who owns the IP block, which ISP or hosting provider it belongs to, and how to report abuse. It is a foundational tool for incident response, threat attribution, and abuse reporting.

Is the WhoisFreaks IP WHOIS API free?

The free web tool runs single IP WHOIS lookups with no account. The IP WHOIS API requires a free account, which includes 500 API credits at signup with no credit card. Each lookup uses one credit. For higher volume, paid credit plans are available on the pricing page.

What is the IP WHOIS API response format?

The IP WHOIS API returns detailed IP address information including registration data, organization details, administrative, technical, and abuse contacts, as well as routing and network information, all in well-structured JSON or XML format.

How do I perform an IP WHOIS lookup?

Enter the IPv4 or IPv6 address into the free IP WHOIS Lookup tool and select search. WhoisFreaks queries the correct registry live and returns the organization, network block, ASN, country, RIR, and abuse contacts. For automation, send the same query to the IP WHOIS API and receive structured JSON.