Data
IP intelligence (ASN, hosting/proxy) API
ASN, network operator/ISP, and hosting/proxy/mobile flags for an IP — the network metadata used for bot/VPN/datacenter detection (complements data/ip-info geolocation). Answers 'is this IP a datacenter/VPN', 'what network is this IP on', 'ASN for this IP', 'is this a hosting provider'. (Metadata, not a threat verdict.)
Price$0.01per request
MethodPOST
Route/v1/data/ip-intel
StatusLive
MIME typeapplication/json
Rate limit45/minute
Cache3600s public
dataipasnhostingproxyvpndatacenternetworkfraud-signal
API URL
Integration docshttps://x402.hexl.dev/v1/data/ip-intelExample request
{
"ip": "8.8.8.8"
}Example response
{
"ip": "8.8.8.8",
"asn": "AS15169",
"asnName": "GOOGLE",
"isp": "Google LLC",
"org": "Google Public DNS",
"hosting": true,
"proxy": false,
"mobile": false,
"country": "US",
"riskFlags": [
"hosting/datacenter"
]
}Input schema
{
"type": "object",
"required": [
"ip"
],
"properties": {
"ip": {
"type": "string",
"examples": [
"8.8.8.8"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}