View as Markdown
IP2WHOIS icon

IP2WHOIS ACTION

WHOIS lookup

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.
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's IP2WHOIS account once, then configure and run WHOIS lookup from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "ip2whois-query-domain-info",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    ip2whois: { authProvisionId: "apn_xxxxxxx" },
    domain: "Domain name",
    format: "Response Format",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

WHOIS lookup inputs
Property Type Description
domain Domain name string
Required
format Response Format string
Format of the response message. If unspecified, json format will be used for the response message.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
ip2whois-query-domain-info
Version
0.0.6
App
IP2WHOIS
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes