Quickstart

Install the tiun SDK and initialize it with your snippet ID. Once both steps are done, your app is connected to tiun.

circle-info

In case you have questions, check the FAQ or reach out to [email protected]


1

Install the SDK

Add @tiun/sdk to your project.

npm install @tiun/sdk
2

Initialize the SDK

Import tiun and run init once at app startup. You can find your snippet ID in the tiun.business dashboardarrow-up-right.

import { tiun } from '@tiun/sdk';

tiun.init({
  snippetId: 'YOUR_SNIPPET_ID',
  language: 'en', // set to your site's language
});
circle-info

Set language to match your site. If omitted, the snippet UI defaults to 'en'. See all options in Initializationarrow-up-right.

That's it. The SDK loads everything it needs automatically — no script tags, no extra HTML.


What do you want to build?

Follow one of our end-to-end guides to complete your integration:

Or jump to the full SDK referencearrow-up-right for all methods, events, and configuration options. You can also explore the Docsarrow-up-right to understand products, authentication, and access control in depth.

Last updated

Was this helpful?