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

# Get Availability

> Returns the biometric availability status for the current device and user. This is a local-only operation — it does not make a network call.

## Parameters

<ParamField body="sessionDurationMinutes" type="Int" required />

## Returns

\[BiometricsAvailability] — one of `Available`, `AlreadyRegistered`, or `Unavailable`.

<RequestExample>
  ```swift theme={null}
  let params = BiometricsParameters(sessionDurationMinutes: 0)
  let availability = try await StytchConsumer.biometrics.getAvailability(params)
  ```
</RequestExample>
