> ## 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.

# Keystore Available

> Check if the Keystore is available on the device using the Stytch React Native SDK

Call this method to check if the Keystore is available on the device. This will always return true for iOS devices. A percentage of Android devices will return false. To learn more about the implications of the Android Keystore being unavailable, read our [Android Keystore resource](/docs/api-reference/consumer/mobile-sdks/react-native/resources/android-keystore-considerations).

## Response

<ResponseField name="available" type="boolean">
  Whether the Keystore is available on the device.
</ResponseField>

<ResponseField name="request_id" type="string">
  Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we
  may ask for this value to help identify a specific API call when helping you debug an issue.
</ResponseField>

<ResponseField name="status_code" type="number">
  The HTTP status code of the response. Stytch follows standard HTTP response status code patterns, e.g. 2XX values
  equate to success, 3XX values are redirects, 4XX are client errors, and 5XX are server errors.
</ResponseField>

<Panel>
  <RequestExample>
    ```jsx theme={null}
    import React, { useCallback, useEffect, useState } from 'react';
    import { Text, TouchableOpacity, View } from 'react-native';
    import { useStytch, useStytchSession } from '@stytch/react-native';

    export const Register = () => {
      const stytch = useStytch();
      const { session } = useStytchSession();

      const [isKeystoreAvailable, setIsKeystoreAvailable] = useState(false);
      useEffect(() => {
        if (stytch) {
          stytch.biometrics.isKeystoreAvailable().then(setIsKeystoreAvailable);
        }
      }, [stytch]);

      const registerBiometrics = useCallback(() => {
        if (session) {
          stytch.biometrics.register({
            prompt: 'Register Your Biometric Factor',
          });
        }
      }, [session, stytch.biometrics]);

      return isKeystoreAvailable ? (
        <View>
          <TouchableOpacity onPress={registerBiometrics}>
            <Text>Register with Biometrics</Text>
          </TouchableOpacity>
        </View>
      ) : null;
    };
    ```
  </RequestExample>
</Panel>
