Securbase Logo

Documentation

Welcome to Securbase documentation. Set up your portal account, create an organization, generate API credentials, and integrate Biomix biometric components into your web or native applications.

How it works

The integration flow has two phases: portal configuration and component integration.

  1. Portal accountRegister at https://app.securbase.com and confirm your email.
  2. OrganizationCreate an organization, choose a subscription plan, and accept the terms.
  3. API credentialsFrom API Management, create a token and copy the API Token and Public Key Component.
  4. Integrate BiomixInstall the component for your platform (web, native, or hybrid) and pass the Public Key as publicKey.

Biomix components

  • Biomix ID (2.0.0) — DNI capture and data extraction for Argentine identity documents
  • Biomix Face (4.0.0) — Facial biometrics with liveness proof and template generation
  • Securbase Portal — Manage organizations, plans, API tokens, and usage metrics
  • REST API — Backend endpoints for document extraction, face verification, and more
  • GitHub Packages — Official @securbase packages for all platforms
  • Integration modes — Web (Angular/React), native (Android/iOS), and hybrid (Cordova/Capacitor)

Quick Example

After obtaining your Public Key from the portal, embed Biomix ID in an Angular app:

verificacion.component.ts
1import { Component } from '@angular/core';
2import { BiomixDniCaptureComponent } from '@securbase/biomix-dni-web-component';
3
4@Component({
5 selector: 'app-verificacion',
6 standalone: true,
7 imports: [BiomixDniCaptureComponent],
8 template: `
9 <lib-biomix-dni-capture
10 [publicKey]="publicKey"
11 [captureBack]="true"
12 (dniTemplateReady)="onDniTemplateReady($event)">
13 </lib-biomix-dni-capture>
14 `,
15})
16export class VerificacionComponent {
17 publicKey = 'TU_PUBLIC_KEY'; // desde el portal
18
19 onDniTemplateReady(info) {
20 // Enviar info.template a POST /portal/biometria/extraer-DNI-UI
21 }
22}

See full guides at Biomix ID / Biomix Face and Authentication.

Next Steps

Start with the Quick Start guide for the full portal walkthrough, then install the component for your stack.