/.well-known/sciencetostartup-key.json
Public key document
The well-known JSON route publishes current lineage verification key metadata and points clients to the key log.
Key Transparency
Inspect the public key document and key event log without overstating today's signing guarantees.
ScienceToStartup exposes key-discovery surfaces for lineage attestation plumbing. They are intentionally truthful about the current degraded state: public key metadata is available, but production signatures, Merkle inclusion, signed tree heads, and G6 completion are not claimed.
/.well-known/sciencetostartup-key.json
The well-known JSON route publishes current lineage verification key metadata and points clients to the key log.
/api/v1/keys/log
The log returns the configured key event plus the explicit transparency boundary around that event.
not claimed
No production signature is claimed by this foundation. The public JSON should keep production_signature_claimed=false.
disabled
Merkle roots and signed tree heads are not implemented yet, so clients must not treat this as certificate transparency.
Degraded by design
not G6 complete
key document
production_signature_claimed=false and attestation_status.counts_as_g6_complete=false
key log
transparency_log_complete=false and merkle_tree.enabled=false
key event
status may be development_test_only or configured_public_key
truth boundary
no production signature, no Merkle log, and no wave anchor claim
Fetch key document
curl "https://sciencetostartup.com/.well-known/sciencetostartup-key.json"
Fetch key log
curl "https://sciencetostartup.com/api/v1/keys/log"
TypeScript guard
const [keyDocument, keyLog] = await Promise.all([
fetch("https://sciencetostartup.com/.well-known/sciencetostartup-key.json").then((response) => response.json()),
fetch("https://sciencetostartup.com/api/v1/keys/log").then((response) => response.json()),
]);
if (keyDocument.production_signature_claimed !== false) {
throw new Error("Unexpected production-signature claim");
}
if (keyLog.transparency_log_complete !== false) {
throw new Error("Unexpected complete transparency-log claim");
}Public key document
Machine-readable key metadata and attestation-status boundary.
/.well-known/sciencetostartup-key.json
Key transparency log
Configured key event plus explicit Merkle and production-signing non-claims.
/api/v1/keys/log