Skip to main content
Transcrypts is an Employment and Income Verification platform that enables verifiers to confirm applicant employment history and income through multiple data sources. The platform provides an SDK widget that applicants interact with to authorize and complete verification requests. For inquiries, contact support@transcrypts.com or access the Dashboard.

Verification Methods

The Transcrypts SDK widget supports five verification methods. Each method connects to a different data source to retrieve employment and income information.

Bank Integration

Applicants connect their bank accounts through the widget to verify income. Transaction and deposit history from linked accounts provides proof of income.

Payroll Integration

Applicants connect their payroll provider through the widget. Employment details, salary information, and pay history are retrieved directly from the payroll system.

Social Security Account

Applicants connect to the Social Security Administration (SSA) website through the widget. SSA records provide a verified employment history across all employers that reported wages.

Stored Credentials

Applicants who have previously completed verification through Transcrypts can reuse their stored credentials. This method skips the initial connection step and retrieves data using existing authorized access.

Instant Verification

The verifier provides the applicant’s name, date of birth, and address history. Transcrypts returns results immediately by matching this information against available data sources without requiring applicant interaction.

Supported Environments

Transcrypts operates across two environments:
  • Development: For live credential testing; limited to 50 successful Tasks without billing
  • Production: For production use; each successful Task incurs charges
All API requests use the base URL https://prod.transcrypts.com/v1/ regardless of environment. The Access secret determines which environment processes each request.

Authentication

API Keys

The Transcrypts API requires valid credentials consisting of:
ValueDescriptionExample
client_idPrivate team identifierdd21ca23c12142b6a0970b1e0afedf16
access_secretEnvironment-specific private keydev-a57b3109f1f4a8b3f2ebbc1c526950f1795464af
The client_id remains constant across environments. The access_secret differs for each environment with prefixes: dev or prod.

Required Headers

Every API request requires:
  • X-Access-Client-ID: Contains the Client ID
  • X-Access-Secret: Contains the Access secret
API keys provide access to sensitive data. Store these values securely within your application backend.

Protocols

Transcrypts uses REST API frameworks with these specifications:
  • Responses in standard JSON format
  • HTTPS TLS v1.2+ required (HTTP and earlier TLS versions unsupported)
  • Requests must include Content-Type: application/json header with valid JSON body only

Security

Manage identifier values from Transcrypts Bridge and API endpoints to maximize security. These values associate API and provider events with requests and assist support teams with issue resolution.
Ensure access_token values remain backend-only and never exposed client-side. Store tokens securely and associate them with application users.

Additional Access Tokens

Users with multiple data provider accounts and Links may create multiple access_tokens.

Errors

HTTP Status Codes

  • 2xx: Successful requests
  • 4xx: Invalid inputs or state violations
  • 5xx: Rare server errors

Response Code Reference

CodeTitleDescription
200OKRequest successful
201CreatedResource created successfully
400Bad RequestUnacceptable request
401UnauthorizedMissing or invalid credentials
403ForbiddenPermission denied
404Not FoundResource unavailable
405Method Not AllowedUnsupported request method
406Not AcceptableServer cannot match acceptable values
410GoneBridge token expired
415Unsupported Media TypeInvalid payload format
429Too Many RequestsRate limit exceeded; access_token allows one initial and three refresh requests per 24 hours
50xInternal Server ErrorAPI error

Error Message Format

Response bodies contain:
  • code: Error source
  • message: User-facing issue description
  • invalid-params: Form field errors with field parameter for UI display

Error Code Types

  • validation_error: Invalid input format or missing required fields
  • expired_token: Public token expired after 6 hours
  • incorrect_token: Public or access token cannot be matched in storage

Rate Limiting

The API allows up to 300 requests per minute per Access secret key. Exceeding this limit returns a 429 Too Many Requests error. Contact support@transcrypts.com to request limit increases.