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

# Browser Supports Autofill

> Browser Supports Autofill using the Stytch Vanilla JS SDK

An asynchronous helper method to determine if the browser supports autofill. If it does, we recommend using `conditional_mediation` when authenticating.

## Response

<ResponseField name="supports_autofill" type="boolean">
  Whether the browser supports autofill.
</ResponseField>

<Panel>
  <RequestExample>
    ```js theme={null}
    import { StytchClient } from '@stytch/vanilla-js';

    const stytch = new StytchClient('${publicToken}');

    stytch.webauthn.browserSupportsAutofill().then((browserSupportsAutofill) => {
    console.log({ browserSupportsAutofill });
    });
    ```
  </RequestExample>
</Panel>
