get_ip_org
Retrieve the organization and ASN details for any IP address to identify network ownership and internet service providers.
Instructions
Get just the organization/ASN for an IP address.
Args: ip: IP address to lookup. If None, returns current organization.
Returns: ASN and organization name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | No |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ip"
}
},
"type": "object"
}