IPinfo's Core API service makes accessing privacy data more affordable!

Our IP privacy detection data is supported by active measurement and behavior-based detection, making it the best-in-class VPN and proxy detection service available.

However, users who regularly use our data through our free tier are interested in getting access to our privacy detection data at an affordable rate. So, we have decided to make a portion of the data accessible for an affordable price through our updated Core API service, which is our most basic paid tier.

The Core API service includes what we refer to as network flags. Network flags provide binary responses regarding the nature of IP addresses. Currently, we offer five different network flags through the Core API service.

  • is_anonymous: Indicates whether the IP address is anonymous. true if the IP address is associated with an IP privacy service, such as a VPN, proxy, Tor, or relay. This provides a high-level summary flag from our IP to Privacy API response.
  • is_hosting: Indicates whether the IP address is an internet service hosting IP address. This information is separately derived from our IP to Privacy data.
  • is_anycast: Indicates whether the IP address is an anycast IP. true if the IP address maps to multiple physical servers in different locations via anycast routing.
  • is_mobile: Indicates whether the IP address belongs to a mobile network. true if the IP address is associated with a cellular network, carrier, or mobile device. This information is from our carrier IP API service.
  • is_satellite: Indicates whether the IP address is part of a satellite internet connection. true if the IP address belongs to a satellite internet pool.

Now, let’s take a look at the is_anonymous and is_hosting flags in particular as they relate to our IP Privacy Detection data.

VPN IP address

:link: 125.139.147.149 IP Address Details - IPinfo.io

Network Flag from the Core API

{
	"is_anonymous": true, <----------------
	"is_anycast": null,
	"is_hosting": null,
	"is_mobile": null,
	"is_satellite": null
}

Hosting IP Address (That is not being used in an anonymous service)

:link: 1.12.34.0 IP Address Details - IPinfo.io

Network Flag from the Core API

{
	"is_anonymous": null, <----------------
	"is_anycast": null,
	"is_hosting": true, <-------------------
	"is_mobile": null,
	"is_satellite": null
}

TOR IP Address

:link: 114.41.23.148 IP Address Details - IPinfo.io

Network Flag from the Core API

{
	"is_anonymous": true, <----------------
	"is_anycast": null,
	"is_hosting": null,
	"is_mobile": null,
	"is_satellite": null
}

Proxy IP address

:link: 187.1.166.212 IP Address Details - IPinfo.io

Network Flag from the Core API

{
	"is_anonymous": true, <----------------
	"is_anycast": null,
	"is_hosting": null,
	"is_mobile": null,
	"is_satellite": null
}