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

Response

200
application/json

WHOIS lookup completed successfully

The response is of type object.