Visitor Transparency
Let visitors see exactly what you track about them
Show your users what Fusionaly knows about their session. One API call, full transparency.
See it in action: View your own data on fusionaly.com
The Endpoint
Section titled “The Endpoint”GET /x/api/v1/meReturns the visitor’s fingerprint and recent events:
{ "visitorId": "69323ea6c0a1...", "visitorAlias": "Swift Sheep", "country": "es", "events": [ { "timestamp": "2025-11-04T18:57:50Z", "url": "fusionaly.com/", "eventType": 1 }, { "timestamp": "2025-11-04T18:46:18Z", "url": "fusionaly.com/", "eventType": 2, "customEventKey": "scroll:section:pricing" } ], "generatedAt": "2025-11-04T19:11:30Z"}| Field | What it is |
|---|---|
visitorId | The hash stored with their events |
visitorAlias | Friendly name shown in the dashboard (for example “Swift Sheep”) |
country | Two-letter ISO code (or __unknown_country__ if GeoIP is not available) |
events | Up to 25 most recent events |
eventType | 1 = page view, 2 = custom event |
Use Cases
Section titled “Use Cases”Privacy page widget. Show users their data with a “See what we track” button.
GDPR transparency. Prove you collect only what you claim.
Trust building. Let privacy-conscious users check your claims themselves.
Selecting the Website
Section titled “Selecting the Website”The visitor hash includes the domain. Fusionaly resolves the website in this order:
- The
wquery parameter (an explicit override) - The
urlquery parameter - The request’s
Hostheader (the default)
// Same host as tracked sitefetch("/x/api/v1/me");
// From admin, checking a specific sitefetch("/x/api/v1/me?w=example.com");Privacy Guarantees
Section titled “Privacy Guarantees”Daily rotation: Visitor IDs reset every day at 00:00 UTC. Each day gets a new salt and a new fingerprint. The endpoint shows only events from the current day. There is no long-term tracking.
No cookies: Fusionaly builds the fingerprint from request headers. It does not store anything on the user’s device.
User-controlled: This endpoint is opt-in. You decide whether to expose it to your users.