---
page_source: https://juspay.io/sea/docs/digital-wallets-sea/docs/how-to-integrate-web/step-2--hyperservice-instantiation
page_title: Step 2:  HyperService Instantiation
---


# **Instantiate HyperService**  SDK



To begin using the SDK, you need to create an instance of HyperServices. The SDK exposes the HyperServices class. Create an object of this class for all for all subsequent interactions with the SDK.

Follow the steps below to set up and start using the HyperServices SDK in your application:


#### 1. Load the SDK



Add the following `<script>` tag to the HTML file where the SDK will be used. Make sure this script is included on the **same page**  where the SDK functionalities are needed:


#### Shell Code Snippet:

```shell
<script src="https://payments.juspay.in/payment-page/HyperServices.js"></script>
```


⚠️ Ensure the script is loaded **before**  initializing `HyperServices`.


#### 2. Create an Instance



Once the script is loaded, create an object of the `HyperServices` class:


#### Shell Code Snippet:

```shell
const hyperServiceObject = new window.HyperServices()
```


You can now use this `hyperServices` object to access all SDK features.


---
