tracio.aidocs

Getting Started

  • Overview
  • Quick Start
  • How It Works

SDK & API

  • Device Identification JS Agent
  • Trace API Reference
  • Trace Webhooks

Features

  • Device Identification Engine
  • Bot Detection
  • Trace Signals
  • IP Intelligence

Advanced

  • Cloud Deployment
  • Privacy & GDPR
  • Migration from FPJS

Reference

  • Changelog
  • Troubleshooting
  • Error Handling
  • Testing

Testing

Test your Device Identification integration with sandbox mode, mock responses, and end-to-end verification before deploying to production.

Testing Your Integration

Verify your integration works correctly before going to production.

Quick Verification

// Run in browser console to verify SDK loads
const tc = await Tracio.load({ apiKey: 'your-key' });
const result = await tc.get();
console.assert(result.visitorId, 'visitorId should exist');
console.assert(result.confidence > 0, 'confidence should be positive');
console.log('Integration verified:', result.visitorId);

Server-Side Verification

curl -s https://api.tracio.ai/v1/events/REQUEST_ID \
-H "Auth-API-Key: your-secret-key" | json_pp