POST
/
v2
/
toolbox
/
whois
WHOIS lookup
curl --request POST \
  --url https://app.pulseguard.nl/api/v2/toolbox/whois \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "domain": "example.com"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "domain": "<string>",
    "registrar": "<string>",
    "creation_date": "2023-11-07T05:31:56Z",
    "expiration_date": "2023-11-07T05:31:56Z",
    "nameservers": [
      "<string>"
    ],
    "raw_data": "<string>"
  }
}
This endpoint performs WHOIS domain lookup to retrieve registration information.
Expert Plan Required - This endpoint requires an active Expert Plan subscription for API access.

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Body

application/json
domain
string
required

Domain name for WHOIS lookup

Example:

"example.com"

Response

WHOIS lookup completed successfully

success
boolean
required
Example:

true

message
string
required

Success message

data
object

Response data as object