> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smokeball.com/llms.txt
> Use this file to discover all available pages before exploring further.

# get

[**@smokeballdev/smokeball-client-sdk**](./../README)

***

# Function: get()

> **get**(): [`Api`](./../@smokeballdev/namespaces/common/interfaces/Api)

Creates the entry point to the Smokeball Client Sdk.

## Returns

[`Api`](./../@smokeballdev/namespaces/common/interfaces/Api)

sdk instance if the Smokeball app is loaded and interoperability is possible.

null when the Smokeball app is not loaded.

## Example

```
const sdk = SmokeballClientSdk.get();
if (sdk != null) {
  // Interoperability with Smokeball is possible.
}
```
