---
title: Getting Started
description: Connect your app to Inth consent management.
lastModified: "2026-08-21T17:01:05+01:00"
lastAuthor: Kaylee
---
Use Inth when you want c15t consent UX with a hosted backend for policy resolution, consent syncing, jurisdiction awareness, and durable records.

## What you need

Before connecting an app, create a consent project in Inth and decide which application origins should be allowed to call it.

Then use c15t's canonical framework docs for the frontend integration:

* [Next.js quickstart](https://c15t.com/docs/frameworks/next/quickstart)
* [React quickstart](https://c15t.com/docs/frameworks/react/quickstart)
* [JavaScript quickstart](https://c15t.com/docs/frameworks/javascript/quickstart)

## Inth-specific setup

Inth changes the backend side of the setup:

* create a managed consent project
* choose a runtime region
* add trusted origins
* use hosted mode in c15t
* set `backendURL` to your consent backend URL or app proxy

The app-local proxy pattern is common:

```ts
backendURL: '/api/c15t';
```

The hosted backend is responsible for jurisdiction and policy resolution, consent syncing, and backend records. Keep `mode="hosted"` for production.

## Verify the install

1. Start your app locally.
2. Confirm the banner appears when no consent has been saved.
3. Open the customize dialog and verify each configured category appears.
4. Accept or reject consent, reload, and confirm the choice persists.
5. Check that measurement and marketing scripts do not run until their category is granted.
6. Confirm the save appears in Inth consent records.
