# Initialise Widget

To initialize KriptoRamp widget first you need to make request to following URL:&#x20;

```
https://api.kriptomat.io/widget/init
```

Content-Type should be set to "application/json"

Following parameter is required:&#x20;

<table><thead><tr><th width="154">Paramater</th><th width="369.3333333333333">Description</th><th>Data format</th></tr></thead><tbody><tr><td>token</td><td>token you get in email after completing <a href="../../getting-started/kripto-ramp-widget-and-kripto-white-label-get-started#step-1-partner-information-form">registration</a></td><td>string</td></tr></tbody></table>

For optional parameters check [widget configuration](https://developer.kriptomat.io/docs/widget.html/widget-configuration)

Request returns URL for loading Kriptoramp widget with `uuid` parameter

#### Basic request example:&#x20;

```
POST https://api.kriptomat.io/widget/init 

{
    "token": "6a7d2e91d4cff64939450c74001da4f24fbabd2abae8b2fc1c79a561da9de14a",
}
```

#### **Response Example**

```
{
	"status": "true",
	"data":
	{
		"url": "https://widget.kriptomat.io/?uuid=c472856c-d248-4e53-ae49-1d2f088cb732",
	}
}
```
