Full WHOIS data for any IP address including allocation history, RIR registration, net block information, and ASN assignment data.
Capabilities
Structured, machine-readable WHOIS data for every IP block — no raw text parsing needed.
Raw WHOIS text parsed into clean, structured JSON. No regex hacks — every field extracted and normalised automatically.
See when each IP block was first allocated and track changes in ownership, re-delegation, and registration history over time.
Access the authoritative registration record from ARIN, RIPE, APNIC, LACNIC, or AFRINIC — whichever RIR manages this block.
Get the full CIDR block, start and end IP addresses, and the total number of IPs in each allocated net block.
See which Autonomous System Number the IP block is assigned to, including ASN name and routing registry details.
Extract admin-c and tech-c handle records with contact details for the network's administrative and technical contacts.
Response Schema
All fields returned by the /v2/ip/{ip}/whois endpoint.
| Field | Type | Description |
|---|---|---|
ip | string | The queried IP address |
org | string | Organisation name that owns this IP block |
netname | string | Short network name handle registered in the RIR |
descr | string | Description field from the WHOIS record |
country | string | ISO 3166-1 alpha-2 country code |
admin_c | string | Administrative contact handle |
tech_c | string | Technical contact handle |
cidr | string | CIDR notation of the allocated network block |
allocation_date | string | ISO 8601 date when this block was first allocated |
rir | string | Authoritative Regional Internet Registry |
status | string | Allocation status (ALLOCATED, ASSIGNED, RESERVED, etc.) |
Live Demo
Enter any IP address to retrieve its full WHOIS record.
{
"ip": "8.8.8.8",
"org": "Google LLC",
"netname": "GOOGLE",
"descr": "Google LLC",
"country": "US",
"admin_c": "ZG39-ARIN",
"tech_c": "ZG39-ARIN",
"cidr": "8.8.8.0/24",
"allocation_date": "1992-12-01",
"rir": "ARIN",
"status": "ALLOCATED"
}
Applications
Confirm who legitimately owns and operates an IP block before establishing peering agreements or trusting traffic from that range.
Investigate suspicious IP addresses by examining their WHOIS history and registration details to identify threat actor infrastructure.
Document IP block ownership for regulatory compliance, KYC processes, and due diligence when onboarding new network partners or clients.
Integration
# Get full WHOIS data for an IP address
curl -X GET "https://api.hostinfo.com/v2/ip/8.8.8.8/whois" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Free plan includes 50K API calls/month. No credit card required.