whois_lookup_by_ip
Retrieve WHOIS records for any IP address or range to identify ownership, registration details, and network information from authoritative sources like ARIN and RIPE.
Instructions
WHOIS lookup by IP address or IP range.
Args: ip: IP address or range to lookup page: Page number for paginated results source: Filter by WHOIS source (arin, ripe, afrinic, apnic, lacnic)
Returns: WHOIS records for the IP or range.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | ||
page | No | ||
source | No |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
},
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source"
}
},
"required": [
"ip"
],
"type": "object"
}