Look up a domain for an IP
Identify the domain linked to an IP address
To determine the domain associated with an IP or an array of up to 100 IPs, create your API request using the only required parameter: ips
and call the /domain endpoint.
API calls containing a single IP will return a 200 code and the results. When making an API call that includes multiple IPs, the response will be asynchronous and return a 202 instead of immediately returning the results. You will then need to poll for the results. For more information, visit our Asynchronous API response page.
POST/v2/domain
cURL
curl -sSLX POST 'https://ip-intel.'"$PANGEA_DOMAIN"'/v2/domain' \
-H 'Authorization: Bearer '"$PANGEA_INTEL_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"ips":["24.235.114.61"]}'
Was this article helpful?