Netify Hostname API
The Netify Hostname API provides network intelligence data that is typically used for:
- DNS filtering
- Application detection
- Hostname-based machine learning models
The product information page provides a high-level introduction on the available data.
Endpoints
You can find links to information on authentication, response codes, and other developer topics in the menu. An API key or token from a subscription is required to access the links below.
Hostname Lookup
GET
https://feeds.netify.ai/api/v2/hostnames/{hostname}
Returns details on single hostname.
Terminal - Netify
×
curl --header 'x-api-key: {your key}' https://feeds.netify.ai/api/v2/hostnames/e17437.dsct.akamaiedge.net
Batch Hostname Lookup
POST
https://feeds.netify.ai/api/v2/hostnames --data [ hostname list ]
Returns details on a list of IP addresses. The batch data list must not exceed 100 items.
post-data
array
Terminal - Netify
×
curl --header 'Content-Type: application/json' \
--header 'x-api-key: {your key}' \
--request POST \
--data '["pbs.twimg.com", "youtubei.googleapis.com", "e17437.dsct.akamaiedge.net" ]' \
https://feeds.netify.ai/api/v2/hostnames
Return Payload
The Hostname Object documentation is where you will find detailed information on the hostname payload.