POST
/
v1beta
/
toolbox
/
whois
WHOIS lookup
curl --request POST \
  --url https://app.pulseguard.nl/api/v1beta/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>"
  }
}

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.