IP Intel API Reference
The IP Intel service allows you to retrieve security information about known IP addresses that have been collected across the internet for several decades, giving you insight into the reputation of an IP.
Base URL
ip-intel.<csp>.<region>.pangea.cloud
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v2/reputation' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Reputation
Retrieve a reputation score for an IP address from a provider, including an optional detailed report. When requesting reputation for multiple IP addresses, the response will be asynchronous. See API Reference/Asynchronous Responses
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v2/domain' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Domain
Retrieve the domain name associated with an IP address. When requesting domain information for multiple IP addresses, the response will be asynchronous. See API Reference/Asynchronous Responses
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v2/proxy' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Proxy V2
Determine if an IP address originates from a proxy. When requesting information on multiple IP addresses, the response will be asynchronous. See API Reference/Asynchronous Responses
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v2/vpn' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
VPN
Determine if an IP address originates from a VPN. When requesting information on multiple IP addresses, the response will be asynchronous. See API Reference/Asynchronous Responses
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v2/geolocate' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Geolocate
Retrieve location information associated with an IP address. When requesting geolocation for multiple IP addresses, the response will be asynchronous. See API Reference/Asynchronous Responses
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v1/reputation' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Reputation (deprecated)
Retrieve a reputation score for an IP address from a provider, including an optional detailed report.
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v1/domain' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Domain (deprecated)
Retrieve the domain name associated with an IP address
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v1/proxy' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Proxy (deprecated)
Determine if an IP address originates from a proxy.
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v1/vpn' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
VPN (deprecated)
Determine if an IP address originates from a VPN.
curl -sSLX POST 'https://ip-intel.aws.us.pangea.cloud/v1/geolocate' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
Geolocate (deprecated)
Retrieve location information associated with an IP address.
Was this article helpful?