POST
/
v2
/
toolbox
/
dns-lookup
DNS lookup
curl --request POST \
  --url https://app.pulseguard.nl/api/v2/toolbox/dns-lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "domain": "example.com"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "domain": "<string>",
    "record_type": "<string>",
    "records": [
      {
        "value": "<string>",
        "ttl": 123
      }
    ]
  }
}
This endpoint performs DNS record lookup for a specified domain.
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

DNS lookup completed successfully

The response is of type object.