
7 best product tour tools with GDPR compliance (2026)
GDPR fines passed €7.1 billion in cumulative penalties as of mid-2025, with 2,800+ enforcement actions on record (Kiteworks, 2025). European Data Protection Authorities now process 443 breach notifications per day. And Sweden's DPA has started targeting manipulative cookie banners specifically.
Product tour tools sit right in the crosshairs. They inject JavaScript, track behavior, store user profiles, and drop cookies. Under GDPR, that means you need explicit consent for tracking, a signed DPA with the vendor, and deletion within 30 days.
We went deeper than the typical "GDPR compliant" checkbox. We checked DPA availability, EU hosting, cookie behavior, deletion workflows, and whether each tool's architecture supports GDPR Article 25's "Privacy by Design" requirement.
npm install @tourkit/core @tourkit/reactWe built Tour Kit, so take our #1 ranking with appropriate skepticism. Every data point below links to a primary source you can verify.
How we evaluated GDPR compliance
We scored each tool across eight criteria your Data Protection Officer actually cares about: DPA availability, EU hosting, Standard Contractual Clauses, cookie behavior, deletion SLA, sub-processor disclosure, breach notification, and architecture (does personal data leave your infrastructure?).
We installed each tool, checked what data flows to the vendor, and read the actual DPA documents. Most tools treat GDPR as a legal layer bolted on top. Only one treats it as an architectural decision.
Quick comparison table
| Tool | Type | DPA available | EU hosting | Data leaves your infra | Cookies | Deletion SLA | Pricing |
|---|---|---|---|---|---|---|---|
| Tour Kit | Headless library | N/A (no vendor) | Developer-controlled | ❌ No | None | Developer-controlled | Free (MIT) / $99 Pro |
| Appcues | SaaS platform | ✅ Public URL | ✅ US or EU | ✅ Yes | Yes | 30 days | $300/mo+ |
| Pendo | SaaS platform | ✅ Available | ✅ EU instance | ✅ Yes | Yes | 21 days | Custom pricing |
| Userflow | SaaS platform | ✅ PDF available | ⚠️ GCP, no EU-only | ✅ Yes | Yes | Not specified | $240/mo+ |
| Chameleon | SaaS platform | ✅ Available | ⚠️ Not specified | ✅ Yes | Yes | 365 days inactivity | Custom pricing |
| Userpilot | SaaS platform | ⚠️ Request-based | ⚠️ AWS/GCP, EU-US DPF | ✅ Yes | Yes | Not specified | $249/mo+ |
| Usetiful | SaaS platform | ✅ Available | ✅ EU-based company | ✅ Yes | Minimal | Not specified | Free tier / $29/mo+ |
Data sourced from vendor DPA documents, privacy policies, and help center articles as of April 2026. "Data leaves your infra" means personal data is transmitted to the vendor's servers.
1. Tour Kit: best for GDPR by architecture, not paperwork
Tour Kit is a headless React library that runs entirely in your application. The JavaScript never phones home. Behavioral data stays on your servers. Zero cookies. The core ships at under 8 KB gzipped and stores tour state wherever you tell it to: localStorage, sessionStorage, your own database, or nothing at all.
This isn't GDPR compliance through legal agreements. It's compliance through architecture. GDPR Article 25 requires "data protection by design and by default." When personal data never leaves your infrastructure, the entire DPA-and-SCC compliance chain disappears.
Strengths
- Zero data egress: no vendor receives any user data, period
- Storage adapter pattern lets you gate tour state behind consent checks
- No cookies set by the library itself
- WCAG 2.1 AA compliant with focus trapping, ARIA live regions, and
prefers-reduced-motionsupport - The European Accessibility Act (EAA) mirrors GDPR's fine structure. Tour Kit covers both.
Limitations
- No visual builder. Product managers can't create tours without developers writing JSX.
- Smaller community than established SaaS platforms. Fewer integrations out of the box.
- React 18+ only. No Vue, Angular, or vanilla JS support.
- You own the compliance. No vendor handles deletion requests or breach notifications for you.
Pricing
Free and open source (MIT) for core packages. Pro features (adoption tracking, scheduling, surveys) cost $99 one-time.
Best for
EU-based teams where the DPO wants the simplest possible compliance story: no vendor, no DPA, no data transfer.
// src/components/GdprSafeTour.tsx
import { TourProvider, useTour } from '@tourkit/react';
function OnboardingTour() {
const { currentStep, next, isActive } = useTour();
// No data leaves your app. Tour state stays in localStorage.
if (!isActive) return null;
return (
<div className="tour-tooltip bg-popover border rounded-lg p-4 shadow-md">
<p>{currentStep?.content}</p>
<button onClick={next}>Next</button>
</div>
);
}2. Appcues: best SaaS option with EU hosting
Appcues has the strongest GDPR posture among SaaS product tour platforms. A publicly accessible DPA, both US and EU hosting environments, SSL encryption in transit and at rest, and a documented GDPR Deletion API with a 30-day processing window (Appcues docs). If your organization requires a managed SaaS tool and your DPO needs a vendor with real EU data residency, Appcues is the first name on the list.
Strengths
- Public DPA URL, not hidden behind a sales conversation
- EU hosting environment available alongside US
- GDPR Deletion API lets you programmatically request user data removal
- 20+ integrations with Segment, Mixpanel, HubSpot for the rest of your stack
Limitations
- $300/month starting price for 1,000 MAUs makes GDPR compliance expensive for small teams
- SDK payload runs ~200 KB+, adding weight to your Lighthouse scores
- All user behavioral data still flows to Appcues servers, even with EU hosting. You're trusting their infrastructure.
- No WCAG 2.1 AA certification for generated onboarding UI
Pricing
Starts at $300/month for 1,000 MAUs.
Best for
Enterprise teams with budget for a managed platform that need to show auditors a signed DPA and EU data residency.
3. Pendo: best for combining analytics with GDPR controls
Pendo bundles product analytics and in-app guidance with a dedicated EU instance. Deletion requests process within 21 days (Pendo support), inside GDPR's 30-day window. The tradeoff: Pendo collects more behavioral data than a pure tour tool, which means more data under GDPR scope.
Strengths
- Dedicated EU data hosting instance available
- 21-day deletion processing beats GDPR's 30-day requirement
- Combined analytics + tours means fewer vendors to audit
Limitations
- Custom pricing, no public tiers. Enterprise sales cycle for a DPA.
- Richer behavioral profiles mean more data under GDPR scope
- AI features may intersect EU AI Act obligations (August 2, 2026)
Pricing
Custom pricing. Requires contacting sales.
Best for
Product-led companies that already use Pendo for analytics and want onboarding in the same vendor to simplify their data processing inventory.
Try Tour Kit's zero-data-egress approach. No DPA required. Build a demo in CodeSandbox.
4. Userflow: best mid-range option with accessible DPA
Userflow publishes its DPA as a downloadable PDF (Userflow DPA), includes Standard Contractual Clauses, and supports data subject access requests. Mid-range pricing starting around $240/month makes it cheaper than Appcues for teams that need more than a library but can't justify enterprise pricing.
Strengths
- DPA is publicly available as a PDF without requiring a sales call
- SCCs included for cross-border data transfers
- Clean no-code builder for creating flows without developer involvement
- Lower entry price than Appcues or Pendo
Limitations
- Hosted on Google Cloud Platform with no explicit EU-only hosting option
- Deletion SLA not publicly documented
- Fewer integrations than Appcues
- No WCAG 2.1 AA certification
Pricing
Starts around $240/month.
Best for
Mid-size SaaS teams that need a no-code builder with decent GDPR documentation but don't require EU-only data residency.
5. Chameleon: best for teams already past a GDPR audit
Chameleon claims GDPR compliance "since May 25, 2018" and extends those rights to all users globally (Chameleon help center). A 72-hour breach notification commitment is documented. But data hosting location isn't public, and inactive data is deleted after 365 days, not on request.
Strengths
- 72-hour breach notification commitment documented in their help center
- GDPR rights extended to all users, not just EU residents
- Deeper CSS customization than most SaaS competitors
- HelpBar search widget for self-serve onboarding reduces tour dependency
Limitations
- Data hosting location not publicly specified. You'll need to ask sales.
- 365-day inactivity deletion isn't the same as on-demand deletion
- Custom pricing with no public tiers
- Web-only. No mobile SDK.
Pricing
Custom pricing. Requires sales conversation.
Best for
Teams that have already passed a GDPR audit and need a no-code builder with better styling flexibility than Appcues.
6. Userpilot: best analytics bundle, weakest DPA access
Userpilot combines onboarding with product analytics and autocapture starting at $249/month. Its GDPR posture is weaker than competitors: the DPA requires contacting sales, and hosting spans AWS and GCP with EU-US Data Privacy Framework certification but no dedicated EU instance.
Strengths
- Built-in analytics eliminates a separate tracking vendor from your DPA inventory
- Autocapture reduces manual event instrumentation
- EU-US Data Privacy Framework certification for transfers
Limitations
- DPA is request-based, not publicly accessible. Your DPO has to email sales.
- No dedicated EU hosting instance
- $249/month minimum before validating your onboarding flow
- SDK payload runs ~250 KB+
Pricing
Starts at $249/month.
Best for
Teams already committed to Userpilot for analytics who want to consolidate vendors rather than add another data processor.
7. Usetiful: best budget option for EU-based teams
Usetiful is a Czech company with EU data residency by default. A free tier and $29/month paid plans make it the most accessible SaaS option for GDPR-conscious startups. They've stated they'll only add user profiling "when we can ensure the highest level of security and compliance" (Usetiful blog).
Strengths
- EU-based company with EU data residency by default. No cross-border transfer questions.
- Free tier available for small projects
- Minimal cookie usage compared to larger platforms
- Conservative approach to user profiling signals genuine privacy awareness
Limitations
- Smaller feature set than Appcues, Pendo, or Userpilot
- Less mature analytics and segmentation capabilities
- Smaller community and fewer integrations
- Documentation is thinner than enterprise competitors
Pricing
Free tier available. Paid plans start at $29/month.
Best for
Early-stage EU startups that need basic onboarding flows without sending user data to a US-based vendor.
The consent problem no one talks about
Here's what every other comparison misses. GDPR compliance isn't just about DPAs and EU hosting. It's about what happens when users click "reject."
A Smashing Magazine case study found tracked traffic collapsed ~95% with proper opt-in consent. For SaaS tour tools, that's a cascading failure: no consent means no behavioral segmentation, no A/B data, no engagement scoring. The features these platforms sell stop working the moment GDPR consent is properly implemented.
Headless tools sidestep this. Tour Kit runs locally, targeting users by application state (current page, activated features) instead of behavioral profiles that require consent.
EU guidance from May 2020 was blunt: "Cookie walls do not offer users a genuine choice" and "scrolling or swiping does not constitute consent." Tour tools that load before consent checks are what regulators call "privacy theater."
// Consent-gated tour initialization — Tour Kit works either way
function App() {
const { hasConsent } = useConsentManager();
return (
<TourProvider
storageAdapter={hasConsent('functional') ? localStorageAdapter : memoryAdapter}
>
<YourApp />
</TourProvider>
);
}How to choose the right GDPR-compliant product tour tool
The decision depends on where your team falls on two axes: data sovereignty requirements and who owns onboarding.
Choose a headless library (Tour Kit) if your DPO wants zero third-party data processing. No DPA negotiations, no vendor audits, no sub-processor lists. You write the code, you control the data. This is the only approach that satisfies GDPR Article 25 (Privacy by Design) at the architectural level. The tradeoff: you need React developers.
Choose a SaaS platform with EU hosting (Appcues, Usetiful) if product managers own onboarding and your DPO accepts vendor data processing under a DPA. Appcues for enterprise. Usetiful for budget with native EU residency.
Choose a combined analytics platform (Pendo, Userpilot) if you want fewer data processors in your GDPR inventory. One vendor means one DPA, one sub-processor list, one audit. But you're concentrating more personal data with that single processor.
The CNIL developer guide from France's data protection authority recommends building privacy into the technical architecture from the start. For product tours, that means choosing a tool where compliance is structural, not contractual.
FAQ
What makes a product tour tool GDPR compliant in 2026?
A GDPR-compliant onboarding tool needs a signed DPA (Article 28), data subject rights support, documented sub-processors, and EU hosting or Standard Contractual Clauses. Headless tools like Tour Kit skip these requirements because no personal data reaches a third-party server.
Do product tour tools need cookie consent under GDPR?
Yes, if they set cookies to track behavior beyond what's strictly necessary. SaaS platforms like Appcues and Pendo set tracking cookies requiring explicit opt-in consent. Tour Kit sets zero cookies. Its localStorage adapter for tour progress typically qualifies as "strictly necessary" functionality.
Can I use a US-based product tour tool and still comply with GDPR?
Yes, with Standard Contractual Clauses or EU-US Data Privacy Framework certification. Appcues and Pendo both offer EU hosting. As of 2025, 71% of organizations cite cross-border transfers as their top challenge (Kiteworks, 2025). A headless library eliminates the concern entirely.
What is the cheapest GDPR-compliant onboarding tool?
Tour Kit is free (MIT) and needs no DPA because no data leaves your infrastructure. Among SaaS options, Usetiful has a free tier with EU residency by default. Appcues starts at $300/month. Factor in legal costs too: each vendor DPA needs legal review.
Does the European Accessibility Act affect product tour tools?
Yes. The European Accessibility Act entered enforcement in 2025 with a penalty framework that mirrors GDPR's structure. Product tour tools that aren't WCAG 2.1 AA compliant expose your product to a second regulatory risk. As of April 2026, Tour Kit is the only product tour library with documented WCAG 2.1 AA compliance including focus trapping, ARIA live regions, and prefers-reduced-motion support.
Get started with Tour Kit. Zero data egress, zero cookies, zero DPA negotiations:
npm install @tourkit/core @tourkit/reactView documentation | GitHub repository | Live examples
JSON-LD Schema:
{
"@context": "https://schema.org",
"@type": "TechArticle",
"headline": "7 best product tour tools with GDPR compliance (2026)",
"description": "Compare 7 product tour tools on GDPR compliance: DPAs, EU hosting, cookie usage, data residency, and deletion APIs. Find the right gdpr compliant onboarding tool.",
"author": {
"@type": "Person",
"name": "Tour Kit Team",
"url": "https://tourkit.dev"
},
"publisher": {
"@type": "Organization",
"name": "Tour Kit",
"url": "https://tourkit.dev",
"logo": {
"@type": "ImageObject",
"url": "https://tourkit.dev/logo.png"
}
},
"datePublished": "2026-04-07",
"dateModified": "2026-04-07",
"image": "https://tourkit.dev/og-images/best-product-tour-tools-gdpr-compliance.png",
"url": "https://tourkit.dev/blog/best-product-tour-tools-gdpr-compliance",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://tourkit.dev/blog/best-product-tour-tools-gdpr-compliance"
},
"keywords": ["gdpr compliant onboarding tool", "gdpr product tour", "data privacy onboarding software"],
"proficiencyLevel": "Intermediate",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "TypeScript"
}
}Internal linking suggestions:
- Link FROM "best-self-hosted-onboarding-tools" → this article (data sovereignty angle)
- Link FROM "best-product-tour-tools-b2b-saas" → this article (enterprise GDPR requirement)
- Link FROM this article → "best-self-hosted-onboarding-tools" (related data control topic)
- Link FROM this article → "best-product-tour-tools-b2b-saas" (enterprise buyers)
Distribution checklist:
- Dev.to (with canonical URL to tourkit.dev)
- Hashnode (with canonical URL)
- Reddit r/reactjs, r/webdev, r/gdpr, r/europrivacy
- Hacker News (GDPR + open source angle)
Related articles

5 best alternatives to building onboarding in-house
Compare 5 alternatives to building product tours from scratch. See real costs, bundle sizes, and accessibility scores to pick the right onboarding approach.
Read article
8 best onboarding Chrome extensions for product teams (2026)
Compare the top onboarding Chrome extensions side by side. We tested 8 tools on pricing, accessibility, and design flexibility to help your team pick.
Read article
5 best onboarding solutions with real analytics (not vanity)
Compare 5 onboarding tools that track activation rate and feature adoption, not just tours started. Pricing, bundle size, and analytics depth reviewed.
Read article
Onboarding tools ranked by customer reviews (G2 + Capterra data)
Compare 10 onboarding tools using real G2 and Capterra ratings, review counts, and developer feedback. Pricing, complaints, and open-source options included.
Read article