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.
Quick Start
Portal setup: account, organization, API Token, and integration modes.
Learn moreInstallation
Install Biomix ID and Biomix Face for Angular, React, Android, iOS, Cordova, or Capacitor.
Learn moreBiomix ID
Capture and verify Argentine DNI documents with guided UX and automatic detection.
Learn moreBiomix Face
Face capture with liveness detection and biometric template generation.
Learn moreHow it works
The integration flow has two phases: portal configuration and component integration.
- Portal account — Register at https://app.securbase.com and confirm your email.
- Organization — Create an organization, choose a subscription plan, and accept the terms.
- API credentials — From API Management, create a token and copy the API Token and Public Key Component.
- Integrate Biomix — Install 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:
1import { Component } from '@angular/core';2import { BiomixDniCaptureComponent } from '@securbase/biomix-dni-web-component';34@Component({5 selector: 'app-verificacion',6 standalone: true,7 imports: [BiomixDniCaptureComponent],8 template: `9 <lib-biomix-dni-capture10 [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 portal1819 onDniTemplateReady(info) {20 // Enviar info.template a POST /portal/biometria/extraer-DNI-UI21 }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.