get_company_info
Retrieve company details including name, domain, and type associated with any IP address to identify network ownership and organizational information.
Instructions
Get company information for an IP address.
Args: ip: IP address to lookup
Returns: Company name, domain, and type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}