tracio.ai is a fully managed cloud platform. Your application sends signals from the browser, and the cloud returns an identification result. The platform handles scaling, redundancy, and infrastructure management.
Getting started takes minutes: create an account, get your public key, install the SDK, and start identifying visitors. If you prefer to run the stack yourself, see Self-Hosting.
Your application talks to the cloud through the client-side JavaScript SDK. The SDK loads an agent in the browser, collects signals, and returns the identification result:
Browser (JS SDK) ──▶ tracio.ai Cloud ◀── (identification result)visitorId and bot info.To verify results on your own server, use the TRACIO Server API — see the API Reference.
import { Tracio } from "@tracio/sdk"
const tracio = Tracio.init({ publicKey: "5ca175fc...", region: "eu",})The SDK region option selects which data region the SDK talks to. It accepts "us" or "eu" and defaults to "us".
| Region | Description |
|---|---|
us | US data region (default) |
eu | EU data region |
You can configure webhooks to receive notifications from the cloud. See Webhooks for setup and payload details.