Skip to content

Developer Hub

Everything you need to integrate Device Identification, Bot Detection, and Smart Signals into your application. From first API call to production deployment.

Get Started in 3 Lines

Import, initialize, identify. Works with any JavaScript framework.

JavaScript
import { Tracio } from '@tracio/sdk';

const tracio = Tracio.init({ publicKey: '5ca175fc...' });

const result = await tracio.getResult();
console.log(result.visitorId);      // "X7fh2Hg9LkMn3pQr5tBvQw3xZa9mK2pL4nR8dT6y"
console.log(result.bot.detected);   // false
console.log(result.bot.confidence); // 2  (0-100)
Python
import requests

# Look up a visitor via the Server API (Pro plan and above)
resp = requests.get(
    "https://api.tracio.ai/v1/visitors/VISITOR_ID",
    headers={"Authorization": "Bearer tracio_sk_XXXX...XXXX"}
)

print(resp.json())
cURL
curl "https://api.tracio.ai/v1/visitors/VISITOR_ID" \
  -H "Authorization: Bearer tracio_sk_XXXX...XXXX" \
  -H "Accept: application/json"

Ready to Build?

Get your free API key and start tracking devices in under 5 minutes. 2,500 free API calls per month on the Free plan.