Integration
Hosted loader
Dashboard script URL and Tracuto.isReady().
The hosted bundle is served from your dashboard origin as /client/YOUR_PROJECT_ID.js. After it loads, window.Tracuto is available when configuration from the dashboard is valid.
Script tag
html
<script src="https://YOUR_LOADER_HOST/client/YOUR_PROJECT_ID.js" async></script>Use the exact URL from Complete setup or Project settings.
Tracuto.isReady()
Returns true after the bundle loaded, plugins initialized, and the tracker started. Guard all calls:
javascript
if (window.Tracuto?.isReady?.()) {
window.Tracuto.track('example');
}