Plausible
Lightweight, open-source, privacy-friendly web analytics. No cookies, GDPR compliant, with a script under 1KB.
Websites Using Plausible
What Is Plausible Analytics?
Plausible Analytics is a lightweight, privacy-friendly, open-source web analytics tool built as a simple alternative to Google Analytics. Launched in 2019 and developed openly by a small, independent team, Plausible focuses on the essential metrics most site owners actually need, visitors, page views, traffic sources, top pages, countries, devices, and goals, and presents them on a single, fast-loading dashboard. It deliberately avoids the complexity, the cookies, and the data-harvesting practices associated with mainstream analytics suites.
Two characteristics define Plausible. First, it is privacy-friendly and cookieless: it does not use cookies, does not collect or store personal data, and counts visitors anonymously, which means most sites running it do not need a cookie-consent banner for analytics and can position themselves as compliant with regulations like GDPR, CCPA, and PECR. Second, it is open source, released under a permissive license, so anyone can inspect the code, verify the privacy claims, and even self-host the entire platform on their own infrastructure for maximum data ownership. That combination, transparent code plus an anonymous, lightweight design, is the heart of Plausible's appeal.
Plausible is offered both as a hosted SaaS subscription and as a self-hostable open-source application; it is not a browser extension and not a plugin bolted onto a CMS. To use the hosted version, you add a small JavaScript snippet to your site, and Plausible collects aggregate, anonymized data on its servers (hosted in the EU). To self-host, you run the open-source software yourself and serve the script from your own domain. Either way, the script is tiny, often cited as a small fraction of the size of a full Google Analytics tag, so it has a negligible effect on page load and Core Web Vitals.
It helps to understand who Plausible is for. The platform targets privacy-conscious founders, developers, bloggers, agencies, and organizations that want honest, simple traffic numbers without surveillance-style tracking, and that often value the ability to audit or self-host their analytics. It is not trying to be a product-analytics platform with funnels, cohorts, and session replay; it is trying to be the cleanest, most transparent answer to everyday web analytics questions. That focus, reinforced by its open-source nature, is why Plausible has become a flagship example of the privacy-first analytics movement.
How Plausible Analytics Works
Plausible works by loading a tiny JavaScript snippet on each page of your website, commonly served from plausible.io/js/script.js on the hosted plan, or from your own domain when self-hosting. When a visitor lands on a page, the script sends an anonymized event to Plausible's collection endpoint, recording the page view along with high-level, non-identifying context such as the referrer, the broad device and browser type, and the country derived from the IP address at the moment of collection. Plausible does not store the IP address and does not set any cookie, so there is no persistent identifier following a visitor around.
Because there is no cookie and no cross-site identifier, Plausible counts unique visitors using a privacy-preserving technique rather than by tagging each browser. The project has openly documented its approach to de-duplicating visits without retaining personal data, and because the code is open source, those claims can be independently verified, which is a meaningful trust advantage. As with all privacy-first analytics, this is the central trade-off of the category: you give up precise, individual-level user tracking in exchange for genuinely anonymous aggregate numbers that require no consent banner.
The data flows into Plausible's dashboard, which is intentionally minimal and presented on a single screen. You see a traffic graph over your chosen time range, your top pages, your traffic sources and UTM campaigns, the countries and devices your visitors use, and any goals you have configured. Goals let you measure conversions such as signups, purchases, or specific page visits, and Plausible supports custom events and custom properties so you can attach extra context to those conversions, connecting traffic to outcomes without the heavy machinery of a product-analytics suite.
Plausible also includes practical capabilities that matter in real deployments. It offers shareable dashboards (public or password-protected links) so you can make your stats transparent to clients or readers, email reports, and a stats API for pulling your data programmatically. To resist the ad blockers and tracker blockers that strip out third-party analytics, Plausible supports a proxy setup that serves the script through your own domain, improving collection robustness while keeping the data anonymous. And because the whole platform is open source, teams that need full control can run their own instance and own every byte of their analytics data.
A useful way to picture the workflow is to follow a single site from setup to daily use. An owner chooses either the hosted plan or a self-hosted instance, adds their site, and pastes the lightweight snippet into their template, optionally proxying it through their own domain to beat blockers. From that point, every page view is recorded anonymously. The owner configures a goal or two for the actions that matter, then checks the single-screen dashboard each day to see how traffic and conversions are trending. There are no cookie banners to maintain for analytics, no sprawling configuration, and, for self-hosters, no third party holding their data at all.
How to Tell if a Website Uses Plausible Analytics
Plausible leaves a small but recognizable footprint. Because StackOptic analyzes a URL from the server side, it inspects the same signals you can check by hand with browser tools, View Source, or a detection extension. As with all privacy-focused, lightweight analytics, the footprint is intentionally minimal, and self-hosting or proxying can hide the most obvious tell, so it is worth combining several signals.
The Plausible script. The strongest standard signal is a script request to plausible.io/js/script.js (the hosted version sometimes uses extended variants such as script.outbound-links.js or script.tagged-events.js). A <script> tag whose source is the Plausible domain is close to definitive proof on a default setup.
The data-domain attribute. Plausible's script tag carries a data-domain attribute set to the site's domain name, which tells the hosted service which property the events belong to. Spotting data-domain alongside the Plausible script reinforces the detection.
The collection beacon. When a page loads, the script fires a small network request to Plausible's event endpoint (commonly an /api/event path on the Plausible or proxy domain). In the DevTools Network tab you can watch for this beacon as the page loads, which confirms active collection.
Self-hosted and proxied installs. Because Plausible is open source and supports proxying, many sites serve the script from their own domain rather than plausible.io. In that case the obvious domain signal disappears, and the script's distinctive structure, the data-domain attribute, and the /api/event beacon path become the more reliable tells. The script filename and the shape of the request often still resemble Plausible even when the host differs.
Here is how to check each signal yourself:
| Method | What to do | What Plausible reveals |
|---|---|---|
| View Source | Right-click, "View Page Source" and search for "plausible" | The plausible.io/js/script.js tag and the data-domain attribute |
| Browser DevTools | Open the Network tab and reload the page | A request to plausible.io (or a proxy) and the /api/event beacon |
| DevTools Console | Inspect loaded scripts and globals | The Plausible script and any plausible function on the page |
| Wappalyzer | Run the extension on the live page | Identifies "Plausible" under analytics |
| BuiltWith | Look up the domain | Current and historical Plausible detection |
A fast command-line check is curl -s https://example.com | grep -i "plausible". If that returns a match, you are almost certainly looking at Plausible. For the broader methodology, see our guides on how to find out what analytics a website uses and how to find out what technology a website uses.
It is worth being honest about the limits of detection here. Privacy-first, open-source analytics tools are deliberately lightweight, and because Plausible can be self-hosted and supports proxying specifically to beat ad blockers, a site can serve the script from its own domain and avoid the obvious plausible.io request entirely. When that happens, no detector can be perfectly certain from the domain alone, and a careful analyst leans on the script filename, the data-domain attribute, and the /api/event beacon shape rather than guessing. Server-side analysis helps because it fetches the unmodified HTML directly, without a browser's ad blocker stripping the tag first, but it cannot conjure a signal a site has intentionally hidden. The practical takeaway mirrors other privacy tools: a clear plausible.io/js/script.js reference is strong evidence, its absence is not proof Plausible is missing, and combining signals always beats trusting one.
Key Features
- Cookieless, anonymous tracking. No cookies, no personal data, and no cross-site identifiers, which removes the need for an analytics consent banner on most sites.
- Open source. Auditable code under a permissive license, with the option to self-host the entire platform for full data ownership.
- Single-screen dashboard. Visitors, page views, sources, top pages, countries, and devices on one fast, uncluttered view.
- Lightweight script. A very small tracking snippet with negligible impact on page speed and Core Web Vitals.
- Goals and custom events. Measure conversions and attach custom properties to connect traffic to outcomes.
- Proxy support. Serve the script through your own domain to reduce ad-blocker loss while staying anonymous.
- Shareable dashboards and stats API. Public or protected dashboard links plus programmatic access to your data.
Pros and Cons
Pros
- Strong privacy posture: cookieless and anonymous by design, marketed as compliant with GDPR, CCPA, and similar regulations.
- Open source, so the privacy claims are verifiable and the platform can be fully self-hosted.
- Usually eliminates the analytics cookie-consent banner, simplifying compliance and improving the visitor experience.
- Extremely lightweight script with a clean, fast dashboard that needs no learning curve.
Cons
- The hosted version is a paid product with no indefinitely free tier (self-hosting is free but requires server management).
- Intentionally limited depth: no funnels, cohorts, session replay, or individual-user analysis.
- Privacy-preserving counting trades some precision for anonymity, so figures differ from cookie-based tools.
- Self-hosting demands technical effort and ongoing maintenance to run reliably.
Plausible Analytics vs Alternatives
Plausible sits firmly in the privacy-first, lightweight, open-source corner of the analytics market. The table below compares it with common alternatives.
| Platform | Privacy model | Open source | Best for |
|---|---|---|---|
| Plausible | Cookieless, anonymous | Yes (self-hostable) | Privacy-minded teams wanting open-source analytics |
| Fathom | Cookieless, anonymous | No | Privacy-minded founders and agencies (hosted) |
| Google Analytics 4 | Cookie-based, consent usually required | No | Free, full-featured marketing analytics |
| Matomo | Configurable; can be cookieless | Yes (self-hostable) | Teams wanting GA-like depth with ownership |
| Plausible/self-hosted | Cookieless, fully self-hosted | Yes | Maximum data ownership and control |
If you suspect a site uses a different privacy-focused tool, the closest comparison is Fathom, which shares Plausible's cookieless philosophy and single-screen simplicity but is a closed-source, hosted-only product. For an open-source option with much greater depth and Google-Analytics-style reports, see Matomo.
Use Cases
Plausible is most at home for owners who want honest traffic numbers without surveillance-style tracking, and who often value transparency or self-hosting. Developers and technical founders gravitate to it because the code is open source and auditable, and because they can run their own instance if they want to own every byte of data. Bloggers and independent creators use it to see which content resonates on a dashboard they can check in seconds.
It also suits agencies managing many client sites that want a simple, shareable analytics view per client, privacy-focused organizations that cannot justify cookie-based tracking, and any team that prizes fast page loads and a clean visitor experience over deep behavioral analysis. For competitive research, detecting Plausible on a prospect's site is itself a meaningful signal: it suggests an organization that values privacy and transparency, and frequently one with a technical, developer-led culture given the appeal of an open-source, self-hostable tool.
Consider a few concrete scenarios. An indie developer launching a side project might self-host Plausible so they pay nothing beyond their server and keep full ownership of their analytics data. A privacy-focused company might adopt the hosted plan specifically to drop its cookie banner and tell visitors, credibly and verifiably, that it does not track them. A consultancy might run Plausible across client sites and hand each client a shareable dashboard, making reporting transparent and effortless. In each case the common thread is honest, lightweight measurement paired with a strong stance on privacy and, often, openness.
From a sales-intelligence perspective, identifying Plausible across a list of prospects helps segment the market by mindset and culture. Organizations that choose an open-source, cookieless analytics tool tend to value privacy, transparency, simplicity, and technical control, which can shape how a vendor frames a pitch. To understand how detecting a site's stack feeds qualification more broadly, see what is technographics and using tech-stack data to qualify leads.
Frequently Asked Questions
Is Plausible Analytics really cookieless?
Yes. Plausible is built to be cookieless and does not store personally identifiable information or set persistent identifiers on visitors' browsers. Because it is open source, those privacy claims can be independently verified in the code rather than taken on trust. The cookieless design is why most sites running Plausible do not need a cookie-consent banner for analytics, and it counts unique visitors using a privacy-preserving method rather than by tagging each browser.
How can I tell if a website uses Plausible for free?
View the page source and search for plausible, looking for a <script> tag pointing at plausible.io/js/script.js and a data-domain attribute. In DevTools, the Network tab will show a request to Plausible (or a proxy) and an /api/event beacon as the page loads. Free tools like Wappalyzer and BuiltWith confirm it, and a single curl -s URL | grep plausible works from any terminal. Note that self-hosted or proxied installs may serve the script from the site's own domain.
Can I self-host Plausible Analytics?
Yes. Plausible is open source under a permissive license, and you can run the entire platform on your own infrastructure for full data ownership and control. Self-hosting is free of subscription cost but requires you to provision and maintain a server and the supporting services, so it suits technically capable teams. Many users instead choose the paid hosted plan (with EU-based servers) to avoid that operational burden while keeping the same privacy benefits.
Is Plausible GDPR compliant?
Plausible markets itself as compliant with major privacy regulations including GDPR, CCPA, and PECR, because it does not use cookies or collect personal data, and its hosted servers are located in the EU. This is why many sites can run it without a consent banner for analytics. As always, full compliance depends on your complete data-processing picture and any other trackers you use, so treat Plausible as a privacy-friendly foundation rather than a guarantee that covers your entire site.
Why do Plausible's numbers differ from Google Analytics?
Because Plausible is cookieless and anonymous, it counts visitors with a different method than cookie-based tools, and it does not lose traffic to consent-gated tracking the way some setups do. Differences are expected and do not indicate an error, the two tools simply measure differently. Like all third-party analytics, Plausible can still be affected by ad blockers unless you proxy its script through your own domain, which it explicitly supports to improve collection while staying anonymous.
Want to identify Plausible and the rest of a site's stack automatically? Run any URL through StackOptic at https://stackoptic.com.
Alternatives to Plausible
Compare Plausible
Analyze a Website
Check if any website uses Plausible and discover its full technology stack.
Analyze Now