get
/api/v1/vikitron/ssl-certificate-checker
Retrieves and returns SSL/TLS certificate information for the given domain.
Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required
This endpoint requires a valid API key passed as a query parameter or Bearer token.
Get your API keyParameters
1 query parameter
domainstringrequiredDomain name to check.
Example Request
JavaScript fetch
const response = await fetch("https://api.bizkithub.com/api/v1/vikitron/ssl-certificate-checker?domain=example.com", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);get
Example Response
200Success
{
"success": false,
"certificate": {
"subjectCommonName": "*.example.com",
"issuerCountry": "US",
"issuerOrganization": "Let's Encrypt",
"issuerCommonName": "R3",
"serialNumber": "example_serialNumber",
"fingerprint": "example_fingerprint"
}
}cURL
Command line example
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/ssl-certificate-checker?domain=example.com" \
-H "Content-Type: application/json"Need an API key?
All BizKitHub API endpoints require authentication via API key.