One API call. Documented proof.
const res = await fetch("https://api.sixsensesolutions.net/v1/generate", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer your_api_key"
},
body: JSON.stringify({
length: 20,
quantity: 1,
compliance: "NIST",
options: {
uppercase: true,
lowercase: true,
numbers: true,
symbols: true,
exclude_ambiguous: true
}
})
});
const { passwords, meta } = await res.json();
// meta.entropy_bits tells your auditor exactly how strong the credential is
// meta.compliance_profile documents which standard was applied
Use POST /v1/validate to score user-submitted or generated credentials against NIST, SOC2, or custom policies with entropy analysis. Use POST /v1/breach-check for k-anonymity checks against known breached passwords without sending plaintext off your wire beyond the TLS request you control.
Every generate response includes entropy_bits and compliance_profile so your security team has documented proof without writing a single line of audit tooling.