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
host
string
required

Host to scan (IP address or hostname)

Example:

"example.com"

ports
string
required

Ports to scan (comma-separated or range)

Example:

"80,443,22-25"

Response

Port scan completed successfully

success
boolean
required
Example:

true

message
string
required

Success message

data
object

Response data as object