> ## Documentation Index
> Fetch the complete documentation index at: https://stytch.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Stytch React Native SDK (Beta) Overview

> Get started with the Stytch React Native SDK for building secure authentication flows

<Note>These docs are for our new Kotlin Multiplatform SDK, which is in **Public beta**. If you are instead looking for the stable version, please see [here](/docs/api-reference/consumer/mobile-sdks/react-native-legacy/overview).</Note>

The Stytch SDKs provide methods that communicate directly with the Stytch API, allowing you to easily authenticate your users without adding extra endpoints to your backend.

The Stytch React Native Consumer SDK is a headless Kotlin Multiplatform library distributed as an NPM package. It provides platform native async/await API for all Stytch Consumer authentication methods.

## NPM package

<Card title="@stytch/react-native-consumer" icon="atom" href="https://www.npmjs.com/package/@stytch/react-native-consumer" cta="GitHub">
  React Native package for the Stytch B2B SDK
</Card>

## Authentication methods

The `StytchConsumer` client exposes the following namespaces:

| Namespace    | Description                                      |
| ------------ | ------------------------------------------------ |
| `otp`        | One-time passcodes via SMS, email, or WhatsApp   |
| `magicLinks` | Email magic link authentication                  |
| `passwords`  | Password-based authentication                    |
| `oauth`      | OAuth flows (Google, Apple, and others)          |
| `passkeys`   | WebAuthn / passkey authentication                |
| `biometrics` | Biometric authentication (Face ID / Touch ID)    |
| `totp`       | Time-based one-time passcode (authenticator app) |
| `crypto`     | Crypto wallet authentication                     |
| `session`    | Session management                               |
| `user`       | User account management                          |
| `dfp`        | Device fingerprinting                            |

## Compatibility and requirements

* **Minimum React Native version**: 0.80.0
