Developers
Build on the trust network.
First-class SDKs, an OpenAPI-defined REST surface, and webhooks: everything you need to ship credentialing in an afternoon.

Developer surface
Tools that respect your time.
REST, GraphQL & MCP
In progressREST, GraphQL, and an MCP server for AI agents on one predictable surface.
SDKs
In progressTypeScript, Python, Go, Swift, and Kotlin.
Webhooks
In progressSigned, retriable, and idempotent events.
CLI
In progressLocal development, testing, and deploys.
Docs & recipes
In progressCopy-pasteable examples for every flow.
Sandbox
In progressIsolated environment with test credentials.
Quickstart
Verify a credential in a few lines.
import { DaraVera } from "@daravera/sdk";
const dv = new DaraVera({ apiKey: process.env.DV_KEY });
// Verify by the credential's public code or a signed token.
const { status, issuer } = await dv.credentials.verify("DAR-8F3K-2M9Q");
console.log(status, issuer.name); // "valid" "Example State University"