Cert Spotter monitors public Certificate Transparency logs, coalescing all the certificates and precertificates for a particular issuance event into a single issuance object
Go to siteSSLMate — Cert Spotter API provides an easy way to build powerful applications and services for working with SSL information. With the Cert Spotter API, you can quickly access and query important SSL certificate data about domain names, certificate fingerprints and other related information.
By connecting to SSLMate’s extensive SSL certificate repository, you can easily build automated applications and services that can be used to monitor SSL certificates, compare SSL certificates and detect changes in SSL certificate properties. With the Cert Spotter API, you can build these solutions quickly and cost-effectively, without needing to perform manual certificate checks.
Here are some examples of the solutions you can build using the SSLMate — Cert Spotter API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sslmate_cert_spotter_api: {
type: "app",
app: "sslmate_cert_spotter_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.certspotter.com/v1/issuances`,
headers: {
Authorization: `Bearer ${this.sslmate_cert_spotter_api.$auth.api_key}`,
},
params: {
domain: `example.com`,
},
})
},
})
SSLMate — Cert Spotter API uses API keys for authentication. When you connect your SSLMate — Cert Spotter API account, Pipedream securely stores the keys so you can easily authenticate to SSLMate — Cert Spotter API APIs in both code and no-code steps.
Sign up for an SSLMate account, and find your API key in the API Credentials section of your account settings.