whois_ip
Retrieve WHOIS details for any IP address (IPv4 or IPv6) to identify domain ownership, registration information, and other IP-related data. Simplify IP lookup tasks with direct access to authoritative records.
Instructions
Looksup whois information about the IP
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ip": {
"anyOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
}
],
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}