whois_lookup_by_asn
Retrieve WHOIS records for Autonomous System Numbers to identify network ownership and registration details using IPInfo's database.
Instructions
WHOIS lookup by ASN.
Args: asn: ASN number to lookup page: Page number for paginated results source: Filter by WHOIS source (arin, ripe, afrinic, apnic, lacnic)
Returns: WHOIS records for the ASN.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asn | Yes | ||
page | No | ||
source | No |
Input Schema (JSON Schema)
{
"properties": {
"asn": {
"title": "Asn",
"type": "integer"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
},
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source"
}
},
"required": [
"asn"
],
"type": "object"
}