Feature · public registry
Your compliance posture, on the open web.
How it works
Your systems list with a composite trust score that updates as new attestations land. Buyers, procurement teams, and regulators verify your claims without calling sales. The registry is the single source of truth.
Code sample
// Look up any AI system in the public registry.
// Free, public, rate-limited — no auth required.
const res = await fetch(
"https://attestry.ai/api/v1/registry/lookup" +
"?systemName=Example+Credit+Scorer",
);
const { data } = await res.json();
// data.results[0] = {
// fingerprint: "a4f6e8d2c1b9…3f2e1a8b7c5d",
// modelVersion: "1.2.0",
// modelArchitecture: "gradient-boosted-trees",
// registeredAt: "2026-02-01T12:00:00Z",
// systemName: "Example Credit Scorer",
// organizationName: "Acme Compliance Co.",
// attestations: { active: 1, total: 4 },
// }Free plan includes fingerprinting, unverified attestations, and a public registry listing. Upgrade when you need signed proofs or SLA-backed verification.