Netify IP API

The Netify IP API provides granular, application-level metadata for IPv4 and IPv6 addresses, moving beyond traditional ASN and geolocation lookups to offer visibility into the application-centric internet.

Netify maps the underlying infrastructure to specific applications, hosting platforms, and content delivery networks. The product information page provides a high-level introduction on the available data.

Endpoints

You can find links to information on authentication, response codes, response formats, and other developer topics in the menu. An API key or token from a subscription is required to access the links below.

IP Lookup
GET
https://feeds.netify.ai/api/v2/ips/{ip}
Returns details on single IP address.
Terminal - Netify
×
curl --header 'x-api-key: {your key}' https://feeds.netify.ai/api/v2/ips/8.8.8.8

Batch IP Lookup
POST
https://feeds.netify.ai/api/v2/ips --data [ IP list ]
Returns details on a list of IP addresses. The batch data list must not exceed 100 items.

post-data

array
The list of IP addresses.
Terminal - Netify
×
curl --header 'Content-Type: application/json' \
     --header 'x-api-key: {your key}' \
     --request POST \
     --data '["8.8.8.8", "31.13.80.52", "216.239.32.21", "2001:4860:4802:38::15"]' \
     https://feeds.netify.ai/api/v2/ips

Return Payload

The IP Object documentation is where you will find detailed information on the IP address payload.