About this endpoint
What it does
Looks up RDAP-based ASN and network details for the IP address provided in the query string. The response returns the queried ip plus associated ASN, registry, network CIDR, network name, ASN description, and ASN country code fields when available.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| ip | String | Yes | IP address to look up. |
Response
Returns a JSON object with these top-level string fields: ip, asn, asn_registry, network_cidr, network_name, asn_description, and asn_country_code. The optional fields are nullable in the schema, so they may be null when the RDAP lookup does not provide a value.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| ip | String | No | The IP address that was looked up. |
| asn | String | No | The ASN associated with the IP, or null if unavailable. |
| asn_registry | String | No | The registry associated with the ASN, or null if unavailable. |
| network_cidr | String | No | The network CIDR for the IP, or null if unavailable. |
| network_name | String | No | The network name, or null if unavailable. |
| asn_description | String | No | The ASN description, or null if unavailable. |
| asn_country_code | String | No | The ASN country code, or null if unavailable. |