Naar inhoud gaan

Developer Hub

Alles wat je nodig hebt om Device Identification, Bot Detection en Smart Signals in je applicatie te integreren. Van de eerste API-call tot productie-implementatie.

Aan de slag in 3 regels

Importeren, initialiseren, identificeren. Werkt met elk 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"

Klaar om te bouwen?

Vraag je gratis API-sleutel aan en begin binnen 5 minuten met het volgen van apparaten. 2,500 gratis API-calls per maand op het Free-abonnement.