get_hosted_domains
Retrieve a list of domains hosted on a specific IP address to identify websites and services sharing the same server infrastructure.
Instructions
Get domains hosted on an IP address.
Args: ip: IP address to lookup page: Page number (starts at 0) limit: Number of results per page (max 1000, default 100)
Returns: List of domains hosted on the IP address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | ||
limit | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
}
},
"required": [
"ip"
],
"type": "object"
}