> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Authenticators

> Return a list of MFA authenticators associated with the user.

export const ResponseSchema = ({statusCode, type = "{}", children}) => {
  const [open, setOpen] = useState(false);
  return <div className="border border-gray-100 dark:border-gray-800 rounded-lg mb-3 overflow-hidden">
      <div className={`flex items-center gap-2.5 px-4 py-2.5 cursor-pointer select-none ${open ? "bg-gray-50 dark:bg-gray-800" : ""}`} onClick={() => setOpen(!open)}>
        {statusCode && <span className="border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 font-mono text-xs px-1.5 py-0.5 rounded">
            {statusCode.startsWith("default") ? "default" : statusCode}
          </span>}
        <span className="text-gray-500 dark:text-gray-400 text-sm font-mono">
          {type}
        </span>
        <span className="text-gray-400 dark:text-gray-500 text-sm italic">
          application/json
        </span>
        <svg className={`ml-auto opacity-50 transition-transform duration-200 ${open ? "rotate-180" : ""}`} width="16" height="16" viewBox="0 0 16 16" fill="none">
          <path d="M4 6l4 4 4-4" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
        </svg>
      </div>
      {open && <div className="px-4 pt-1 pb-3 border-t border-gray-100 dark:border-gray-800">
          {children}
        </div>}
    </div>;
};

## Endpoint

`GET /mfa/authenticators`

Returns a list of authenticators associated with your application.

To access this endpoint, you must set an Access Token at the Authorization header, with the following claims:

* `scope`: `read:authenticators`
* `audience`: `https://{yourDomain}/mfa/`

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer ACCESS\_TOKEN
</ParamField>

## Response Schema

<ResponseSchema>
  The response is an array of authenticator objects.

  <ResponseField name="id" type="string" required>
    The authenticator ID.
  </ResponseField>

  <ResponseField name="authenticator_type" type="string" required>
    The type of authenticator.
  </ResponseField>

  <ResponseField name="active" type="boolean" required>
    Indicates whether the authenticator is active.
  </ResponseField>

  <ResponseField name="oob_channels" type="string">
    The OOB channels this authenticator supports.
  </ResponseField>

  <ResponseField name="name" type="string">
    The name of the authenticator.
  </ResponseField>
</ResponseSchema>

## Response Messages

| Status | Description               |
| ------ | ------------------------- |
| 200    | A list of authenticators. |
