> For the complete documentation index, see [llms.txt](https://docs.fortmatic.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fortmatic.com/fortmatic-native/log-out.md).

# Log Out

The Fortmatic SDK offers its own end point for logging users out of their Fortmatic wallets.

```javascript
// Initialize provider
import Fortmatic from 'fortmatic';
import Web3 from 'web3';

const fm = new Fortmatic('YOUR_API_KEY');
window.web3 = new Web3(fm.getProvider());

fm.user.logout();
```

Users will now once again, have to login via PIN in order to interact with Fortmatic SDK functionality.
