# SDK reference

Mosaic provides SDKs for both web and mobile platforms. The **JavaScript (Web) SDK is unified** — a single package that includes modules for Orchestration, Fraud Prevention, Authentication, and Identity Verification. Other SDKs — including Angular, React, Android, iOS, React Native, and Flutter — are provided as **separate packages per capability**.

Browse this page by capability to see which SDKs and quickstart guides are available for your platform.

h2
 Fraud Prevention 

Enable real-time threat detection, analysis, and automated response to safeguard applications

div
div
div
img
 JavaScript
    
div
div
a
img
 ‎ NPM
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
div
div
img
 Angular
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
div
div
img
 React
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
div
div
img
  Android (Kotlin)
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
div
div
img
  iOS (Swift)
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
  React Native
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
h2
 Authentication 

Securely authenticate users in your applications

div
div
div
img
 JavaScript
    
div
div
a
img
 ‎ NPM
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
 Android (Kotlin)    
div
div
a
img
 ‎ GitHub
    
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
div
div
img
 iOS (Swift)
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
  React Native
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
 Flutter
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
h2
 Identity Verification

Securely verify the identity of your customers using documents like their driver’s license or passport

div
div
div
img
 JavaScript
    
div
div
a
img
 ‎ NPM
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎Docs
      
div
div
img
 Android (Kotlin)
    
div
div
a
img
 ‎ Github
        
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
        
div
div
img
 iOS (Swift)
    
div
div
a
img
‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
        
div
div
img
  React Native
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎ Docs
      
br
h2
Orchestration
Orchestrate identity journeys for your customers

div
div
div
img
 JavaScript
    
div
div
a
img
 ‎ NPM
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
 Android (Kotlin)
    
div
div
a
img
 ‎ Github
        
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
        
div
div
img
 iOS (Swift)
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
‎
        Docs
      
div
div
img
 React Native
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
div
div
img
 Flutter
    
div
div
a
img
 ‎ GitHub
      
div
a
img
 ‎ Quickstart
      
div
a
img
 ‎ Docs
      
style


.sdk-intro-titles {
  margin-top: 50px !important;   /* Increase space above the title */
}

.responsive-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}

/* Row container */
.table-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  padding: 1px 0;
}

/* Generic cell */
.table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  flex-grow: 1;
  min-width: 100px;
}


/* SDK cell (left column) */
.table-cell.sdk {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
  justify-content: flex-start;
  min-width: 150px;
}

/* Other cells (GitHub, Quickstart, Docs) */
.table-cell:not(.sdk) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 17%;
}

/* Default inline icons (GitHub, Quickstart, Docs) */
.table-cell img {
  margin-right: 8px;
  height: 1.1em;
}

/* SDK icons only — fixed box so text always aligns regardless of icon aspect ratio */
.table-cell.sdk img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 10px 12px 10px 0;
}

/* Make sure GitHub icon does NOT enlarge */
.github-icon {
  height: 1.1em !important;
}

.invisible {
  display: none;
}

/* Mobile layout */
@media (max-width: 600px) {
  .table-row {
    flex-direction: column;
    padding: 2px 0;
  }

  .table-cell, .table-cell.sdk {
    flex-basis: 100%;
    justify-content: flex-start;
    min-width: 0;
    padding: 4px 8px;
  }

  .cell-link img {
    height: 1.1em;
    margin-right: 8px;
  }
}