> For the complete documentation index, see [llms.txt](https://developer.myidentitypass.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.myidentitypass.com/libraries/bank-statement-sdk.md).

# Bank Statement SDK

**VANILLA JAVASCRIPT**

You can implement our javascript SDK for bank statement into your project by using the sample script below.

```javascript
<script src="https://js.myidentitypass.com/v1/inline/bank.js"></script>// import identitypass JS library

<script>
 function initiateBank() { 
     IdentityPassBankWidget.initiate({
      merchant_key: "", // your public key
      callback: function (response) {
         if(response.status =='success'){
             // please note that the response will also be sent to your webhook URL.
          }
         else{
          // process error message here
         } 
        },
     })
}
</script>
```
