Skip to content
DaraVera
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 API and SDK platform screenshot
Developer surface

Tools that respect your time.

REST, GraphQL & MCP

In progress

REST, GraphQL, and an MCP server for AI agents on one predictable surface.

SDKs

In progress

TypeScript, Python, Go, Swift, and Kotlin.

Webhooks

In progress

Signed, retriable, and idempotent events.

CLI

In progress

Local development, testing, and deploys.

Docs & recipes

In progress

Copy-pasteable examples for every flow.

Sandbox

In progress

Isolated 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"