IP2WHOIS WHOIS lookup api helps users to obtain domain information, WHOIS record, by using a domain name. The WHOIS API returns a comprehensive WHOIS data such as creation date, updated date, expiration date, domain age, the contact information of the registrant, mailing address, phone number, email address, nameservers the domain is using and much more. IP2WHOIS supports the query for 1113 TLDs and 634 ccTLDs.
Go to siteThe IP2WHOIS API is a lookup tool that can fetch WHOIS information for a given IP address or domain. This data includes registration details, contact information, and sometimes even personal or organization-related data of the domain owner. Leveraging this API on Pipedream allows you to create automated workflows that can enrich IP data, monitor domain registration changes, or integrate WHOIS information into security analysis. By tapping into Pipedream's capabilities, you can trigger actions based on this data across various apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ip2whois: {
type: "app",
app: "ip2whois",
},
domain: {
type: "string",
default: "greendot.com"
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ip2whois.com/v2?key={your_license_key}&domain={domain_name}`,
params: {
key: `${this.ip2whois.$auth.api_key}`,
domain: `${this.domain}`,
},
})
},
})
Domain Registration Monitoring: Automate the process of monitoring domain registrations for your brand. Trigger an alert or notification when a domain is registered with your brand name, using Pipedream to send the alert through email, Slack, or another messaging service.
Security Analysis and Alerting: Use IP2WHOIS as part of a security workflow to analyze and alert on domain or IP-related threats. When an IP is flagged by your internal systems, automatically fetch WHOIS data and cross-reference it with threat databases, then send the analysis to a SIEM system like Splunk for further investigation.
Lead Generation and Enrichment: Improve your lead generation process by enriching lead data with domain registration details. When a new sign-up occurs, use Pipedream to trigger a WHOIS lookup and append the domain information to the lead's profile in a CRM like Salesforce or HubSpot.
Helps users to obtain domain information, WHOIS record, by using a domain name. Please refer to the documentation for the details of the fields returned.
IP2WHOIS uses API keys for authentication. When you connect your IP2WHOIS account, Pipedream securely stores the keys so you can easily authenticate to IP2WHOIS APIs in both code and no-code steps.
Access your API key from your IP2WHOIS account to retrieve your API key.