Hostname Object
The Hostname object is returned by the Hostname API. It links a hostname to the detected application, platform, network, ASN and resolved IPs.
Hostname Attributes
hostname
stringips
arrayHostname Object - JSON Overview
{
"hostname": "www.example.com",
"application": { Application Attributes },
"platform": { Platform Attributes },
"network": { Network Attributes },
"asn": { ASN Attributes },
"ips": [
"23.227.38.74",
"2620:127:f00f:e::",
...
]
}
Hostname Object - JSON Example
{
"hostname": "au-en.ring.com",
"application": {
"id": 10438,
"tag": "ring",
"label": "Ring",
"description": "Ring is a...",
"category": {
"id": 33,
"tag": "device-iot",
"label": "Device/IoT"
},
...
},
"platform": {
"id": 10035,
"tag": "shopify",
"label": "Shopify",
"description": "Shopify is an...",
"category": {
"id": 23,
"tag": "shopping",
"label": "Shopping"
},
...
},
"network": {
"id": 206,
"tag": "cloudflare",
"label": "Cloudflare",
"description": "Cloudflare is ...",
"category": {
"id": 35,
"tag": "cdn",
"label": "CDN"
},
...
},
"asn": {
"tag": "AS13335",
"label": "Cloudflare",
"entity": {
"id": 206,
"tag": "cloudflare",
"label": "Cloudflare",
"category": {
"id": 35,
"tag": "cdn",
"label": "CDN"
}
...
}
},
"ips": [
"23.227.38.74",
"2620:127:f00f:e::",
...
],
}