Current IP allocation state, in one call.

Pass an IP address. Get back the current registration record: allocation, organization, ASN, country, abuse contact, and Whois server reference.

WHAT THIS API RETURNS

The full IP Whois record, raw and parsed.

The IP Whois Lookup API returns the registration record for an IP address right now: allocation block, organization, autonomous system, country, abuse contact, and Whois server reference. Both the raw RIR response and a parsed structured form are returned in the same call.

The parsed object exposes the fields most workflows need without forcing you to write a per-RIR Whois parser. The raw block is preserved for cases where the parsed view loses signal that matters to you.

Use this when an IP surfaces in incident telemetry, in firewall logs, or in any artifact where you need to know who allocated the address and which provider currently announces it.

REQUEST

One endpoint, one parameter.

Endpoint:

GET https://api.deepinfo.com/v1/lookup/ip-whois?ip={ip}

Parameters:

Name In Type Required Description
ip query string Yes An IPv4 or IPv6 address such as 8.8.8.8.

Authentication is by API token in the request header. See docs.deepinfo.com for the full request reference.

SAMPLE RESPONSE

See what the API returns.

Real response structure for the Current IP allocation state, in one call endpoint. Field coverage may vary based on query parameters and data availability.

JSON RESPONSE
{
  "ip": "8.8.8.8",
  "ipwhois": {
    "raw": "NetRange: 8.8.8.0 - 8.8.8.255
OrgName: Google LLC
OrgId: GOGL
...",
    "parsed": {
      "net_range": "8.8.8.0 - 8.8.8.255",
      "cidr": "8.8.8.0/24",
      "organization": "Google LLC",
      "country": "US",
      "asn": "AS15169",
      "asn_description": "GOOGLE",
      "abuse_email": "[email protected]",
      "registry": "ARIN"
    }
  },
  "check_date": "2026-05-02T08:30:11Z"
}
STRUCTURED VIEW
Fields
Ip
8.8.8.8
Check date
2026-05-02T08:30:11Z
Ipwhois
Raw
NetRange: 8.8.8.0 - 8.8.8.255 OrgName: Google LLC OrgId: GOGL ...
Parsed
{8 fields}

Sample response shown. Real responses depend on query parameters, data availability, and API version. Talk to us for full schema documentation.

“Allocation, ASN, and abuse contact in one shot drives our IP-attribution pipeline for inbound threat events. The single-call shape replaced three RIR-specific lookups that returned inconsistent payloads.”

— Lead Detection Engineer, Managed Security Services Provider
GET STARTED

Run a sample call, or batch lookup your IP set.

We'll set up token access and answer schema questions on a call.

Talk to us Browse API docs