# Getting Started

### Import

Import the `io.straic.StraicSDK` into your file.

```kotlin
import io.straic.StraicSDK
```

### Load

The `load` function initializes the StraicSDK. Please make sure to include your "SDK Key" here

{% hint style="info" %}
You can find your SDK Key in the "Straic Backoffice" under "SDK Integration -> Android -> SDK Key".
{% endhint %}

> For access to the "Straic Backoffice" please contact <info@straic.io>.&#x20;

```kotlin
val sdkKey = "SDK KEY"

StraicSDK.load(sdkKey = sdkKey)
```
