Skip to main content
The Transcrypts SDK lets you add employment verification to any web application. It uses a secure iframe-based widget, works with any JavaScript framework, and ships as a ~5KB package with full TypeScript support.
import { Transcrypts } from 'transcrypts';

const transcrypts = new Transcrypts({ apiKey: 'your-api-key' });
const result = await transcrypts.verify({ ssn: '123-45-6789' });

if (result.verified) {
  console.log('Verified!', result.workExperience);
}

Get Started

How It Works

1

Install the SDK

Add transcrypts to your project via npm, yarn, or pnpm.
2

Initialize with your API key

Create a Transcrypts instance with the API key from your dashboard.
3

Call verify()

The SDK opens a secure iframe widget where the user completes employment verification.
4

Handle the result

The verify() promise resolves with verified work experience records.

Key Features

Framework Agnostic

Works with React, Vue, Angular, or plain JavaScript.

Lightweight

~5KB bundle size with zero runtime dependencies.

Secure by Design

Iframe isolation keeps sensitive data out of your application.

Explore the Docs