cURL
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>" } ] } }
Scan network ports on a target host (Expert Plan required)
API token generated from your PulseGuard dashboard
Port scan completed successfully
The response is of type object.
object