whois_lookup_by_domain
Retrieve WHOIS records for any domain to identify ownership details, registration information, and contact data using IPInfo's database.
Instructions
WHOIS lookup by organization domain.
Args: domain: Domain name to lookup page: Page number for paginated results source: Filter by WHOIS source (arin, ripe, afrinic, apnic, lacnic)
Returns: WHOIS records for the domain.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
page | No | ||
source | No |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
},
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source"
}
},
"required": [
"domain"
],
"type": "object"
}