A JavaScript SDK for integrating Bynn's identity verification service into web applications.
The Bynn Web SDK enables seamless integration of advanced verification capabilities directly into your web applications. With this SDK, you can verify passports, ID cards, and other essential documents effortlessly.
To get started with this SDK, you’ll need a Bynn account. Don’t have one yet? No problem! Create your free account today at bynn.com and unlock access to cutting-edge verification tools.
Start verifying smarter, and trust faster with Bynn!
Create an account and try for free
Include as a script tag:
<script src="https://static.bynn.com/sdk/js/1.2.10/bynn.min.js"></script>
or
<script type="module">
import * as Bynn from 'https://static.bynn.com/sdk/js/1.2.10/bynn.esm.js';
</script>
or install it via a package manager
npm install @bynn-intelligence/websdk
// CommonJS
const Bynn = require('@bynn-intelligence/websdk');
// ES6 style import
import { Bynn } from '@bynn-intelligence/websdk';
Bynn SDK requires one parent element in HTML:
<div id="bynn-verify-form"></div>
To initialize the library, you will need to provide your API Key, KYC level and parentId.
- You can find your public API key and KYC level in the Bynn dashboard in the integration section in the tab "Bynn.js (easy integration)". Just copy the integration code and paste it in the HTML file.
- Fields are optional, but including them enhances the verification process.
- ‘unique_id’ is highly recommended if you conduct more than a few verifications per month. It enables automatic matching of applicants in your system, streamlining the process.
Tip: The more data you send, the more comprehensive intelligence we can deliver, ensuring higher accuracy and better insights for your verifications.
const bynn = Bynn({
apiKey: 'your_PUBLIC_api_key',
kycLevel: 'your_kyc_level',
parentId: 'verification-form',
fields: [
{ name: 'first_name', visible: true },
{ name: 'last_name', visible: true },
{ name: 'email_address', visible: false, value:'john@doe.com' },
{ name: 'phone_number', visible: true },
{ name: 'unique_id', visible: false, value:'550e8400-e29b-41d4-a716-446655440000' },
]
});
bynn.mount();
You can pass all data hidden from the user like this
const bynn = Bynn({
apiKey: 'your_PUBLIC_api_key',
kycLevel: 'your_kyc_level',
parentId: 'verification-form',
fields: [
{ name: 'first_name', visible: false, value:'John' },
{ name: 'last_name', visible: false, value:'Doe' },
{ name: 'email_address', visible: false, value:'john@doe.com' },
{ name: 'phone_number', visible: false, value:'+1234567890' },
{ name: 'unique_id', visible: false, value:'550e8400-e29b-41d4-a716-446655440000' },
]
});
bynn.mount();
This will generate only the verification button.
Pro Tip: If you want to create your own verification button and modal we suggest using our session API instead of the web sdk. Read more about the session API at docs.bynn.com
The fields
array accepts objects with the following properties:
{
name: string; // Field name (required)
visible: boolean; // Whether to show the field (default: true)
value: string; // Pre-filled value (optional)
label: string; // Custom label text (optional)
}
Available field names:
first_name
last_name
email_address
phone_number
unique_id
Example with all options:
const bynn = Bynn({
apiKey: 'your_PUBLIC_api_key',
kycLevel: 'your_kyc_level',
parentId: 'verification-form',
fields: [
{
name: 'first_name',
visible: true,
label: 'Given Name',
value: 'John'
},
{
name: 'unique_id',
visible: false,
value: 'USER123'
}
]
});
You can customize button and loading text:
bynn.mount({
submitBtnText: 'Verify Identity',
loadingText: 'Please wait...'
});
Handle verification session events:
const bynn = Bynn({
// ...other options
onSession: (error, response) => {
if (error) {
console.error('Verification error:', error);
return;
}
console.log('Verification started:', response);
},
onStart: (sessionId) => {
console.log('Verification started:', sessionId);
},
onComplete: (sessionId) => {
console.log('Verification completed:', sessionId);
},
onError: (sessionId, error) => {
console.error('Verification error:', error);
},
onReject: (sessionId) => {
console.log('Verification rejected:', sessionId);
},
onSuccess: (sessionId) => {
console.log('Verification successful:', sessionId);
},
onClose: () => {
console.log('Verification closed');
}
});
The SDK uses CSS custom properties (variables) for styling. Override these variables to customize the appearance:
:root {
/* Primary colors */
--bynn-primary: #6366F1;
--bynn-primary-hover: #4F46E5;
--bynn-primary-disabled: #C7D2FE;
--bynn-primary-light: #EEF2FF;
/* Background colors */
--bynn-bg-white: #FFFFFF;
--bynn-bg-input: #F9FAFB;
/* Neutral colors */
--bynn-neutral-50: #F9FAFB;
--bynn-neutral-100: #F3F4F6;
--bynn-neutral-200: #E5E7EB;
--bynn-neutral-300: #D1D5DB;
--bynn-neutral-600: #4B5563;
--bynn-neutral-800: #1F2937;
}
To avoid overriding SDK classes, it uses .data-bynn-sdk
as a prefix.
You can also style specific elements using these CSS classes:
-
.bynn-form
- The form container -
.bynn-input-wrapper
- Input field wrapper -
.bynn-input
- Input fields -
.bynn-submit
- Submit button -
.bynn-description
- Footer text -
.bynn-modal-overlay
- Verification modal overlay -
.bynn-modal-container
- Modal container -
.bynn-modal-content
- Modal content
Example custom styles:
.data-bynn-sdk .bynn-form {
max-width: 500px;
padding: 2rem;
}
.data-bynn-sdk .bynn-input {
border-radius: 8px;
border: 2px solid var(--bynn-neutral-200);
}
.data-bynn-sdk .bynn-submit {
background: var(--bynn-primary);
font-weight: 600;
}
Set the language for the verification interface:
const bynn = Bynn({
apiKey: 'your_api_key',
kycLevel: 'your_kyc_level',
parentId: 'verification-form',
i18n: 'en-US' // Language code
});
Option | Type | Required | Description |
---|---|---|---|
apiKey |
string | Yes | Your Bynn API key |
kycLevel |
string | Yes | Your Bynn KYC level |
parentId |
string | Yes | ID of container element |
fields |
Field[] | No | Form field configuration |
i18n |
string | No | Language code |
startTimeoutSeconds |
number | No | Timeout in seconds to wait for verification start (default 10 seconds) |
onSession |
function | No | Session callback |
onStart |
function | No | Start callback |
onComplete |
function | No | Complete callback |
onError |
function | No | Error callback |
onReject |
function | No | Reject callback |
onSuccess |
function | No | Success callback |
onClose |
function | No | Close callback |
Option | Type | Required | Description |
---|---|---|---|
name |
string | Yes | Field identifier |
visible |
boolean | No | Show/hide field |
value |
string | No | Default value |
label |
string | No | Custom label |
The SDK supports all modern browsers:
- Chrome/Edge (latest)
- Firefox (latest)
- Safari (latest)
-
Clone the repository:
git clone https://github.com/Bynn-Intelligence/Bynn-Web-SDK.git cd Bynn-Web-SDK
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
This will start a local development server with hot reloading and open dev_example.html
in your browser.
- Open the
dev_example.html
file in your editor - You can find your public API key and KYC level in the Bynn dashboard in the integration section in the tab "Bynn.js (easy integration)".
- Update the following variables:
const apiKey = "your_PUBLIC_api_key"; // Replace with your actual API key const kycLevel = "your_kyc_level"; // Replace with your actual KYC level
- Open the file in your browser while running the development server
- You can make changes to the SDK code and see them reflected in real-time
To build the SDK for production:
npm run build
This will generate both the minified (bynn.min.js
) and ESM (bynn.esm.js
) versions in the dist
folder.