Test your Device Identification integration with sandbox mode, mock responses, and end-to-end verification before deploying to production.
Verify your integration works correctly before going to production.
// Run in browser console to verify SDK loadsconst 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);curl -s https://api.tracio.ai/v1/events/REQUEST_ID \ -H "Auth-API-Key: your-secret-key" | json_pp