POST
/
v2
/
toolbox
/
ssl-check
SSL certificate check
curl --request POST \
  --url https://app.pulseguard.nl/api/v2/toolbox/ssl-check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://example.com"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "url": "<string>",
    "valid": true,
    "issuer": "<string>",
    "subject": "<string>",
    "valid_from": "2023-11-07T05:31:56Z",
    "valid_to": "2023-11-07T05:31:56Z",
    "days_until_expiry": 123
  }
}

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Body

application/json
url
string<uri>
required

URL to check SSL certificate

Example:

"https://example.com"

Response

SSL check completed successfully

success
boolean
required
Example:

true

message
string
required

Success message

data
object

Response data as object