POST
/
v2
/
toolbox
/
port-scan
Port scan
curl --request POST \
  --url https://app.pulseguard.nl/api/v2/toolbox/port-scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "host": "example.com",
  "ports": "80,443,22-25"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "host": "<string>",
    "scan_results": [
      {
        "port": 123,
        "status": "open",
        "service": "<string>"
      }
    ]
  }
}
This endpoint scans network ports on a target host to check for open services.
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

Port scan completed successfully

The response is of type object.