Skip to main content

PostHog

Analytics
4.7
Verified Editor's pick ANALYTICS

PostHog deal: Verified founder pricing

The open-source product analytics platform engineers actually want to use.

  • Generous free tier covers most early-stage teams
  • All-in-one analytics, replay, flags and error tracking
  • Active product team that ships fast
  • Annual savings stack with renewals
Editor's pick
You save
Member-only
Verified weekly · No signup wall
Verified 2 weeks ago · live Negotiated direct by saasTweaks
Founders
2,740+
claimed all-time
This week
138
new claims
Ends in
14d 06h
limited time
Claim PostHog deal

About PostHog

PostHog Review 2026: A Field Notes Investigation Into the OSS Analytics Stack That Wants to Replace Your Whole Data Team

PostHog has spent the last two years quietly bolting modules onto its open-source product analytics core until it now ships eight tightly integrated tools in one SDK. We spent six weeks running it across two production apps, reading the docs front-to-back, and pressure-testing the pricing. Below is the unedited research log.

TL;DR. If you instrument it correctly, PostHog is the cheapest serious analytics stack in 2026 for teams under 10M monthly events. Past 50M events, the bill needs supervision. The autocapture-plus-replay-plus-flags bundle is genuinely unmatched at the free tier.
DimensionScoreField note
Setup9/10One snippet, autocapture on, events flowing in under 5 minutes.
Pricing transparency9/10Public per-event pricing; calculator on site; volume tiers documented.
Cost at scale6/10Beyond 50M events/month the math gets serious.
Feature breadth10/10Eight modules, one SDK, one user identity graph.
OSS credibility10/10MIT-ish license, self-host supported, public roadmap.
VerdictBuyDefault pick for product teams in 2026.

Field Notes #1 — Onboarding & Install (Day 1 to Day 7)

  1. NOTE-01: Install path is genuinely 5 minutes. The reverse-proxy snippet works on Vercel, Cloudflare and Netlify. Autocapture turns on by default, so pageviews and clicks appear in the live event stream without writing a single track call.
  2. NOTE-02: The SDK is one import. posthog-js handles analytics, replay, flags, surveys and experiments from the same loader. PostHog's docs note this is deliberate — one bundle, one identity, no schema drift between products.
  3. NOTE-03: Identity stitching is the silent win. Anonymous-to-identified merging happens automatically once you call identify(). We saw zero orphaned anonymous users after seven days, which is rare.
  4. NOTE-04: EU residency is a real toggle. PostHog Cloud EU is a separate region with separate keys; teams under GDPR pressure can flip residency at project creation. Self-host is also genuinely supported via Docker and Helm.
  5. NOTE-05: First friction surface — feature flags need bootstrap. If you use flags for SSR or first-paint logic, you need to bootstrap from the server SDK. The docs cover it but it's a Day-3 lesson, not Day-1.
  6. NOTE-06: Autocapture is double-edged. By Day 4 we had 180 distinct event types we never asked for. Hypothesis confirmed: autocapture is great for exploration, bad for billed-event hygiene. Filter early.

What PostHog Actually Is in 2026

PostHog started life as an open-source Mixpanel alternative in 2020. By early 2026 it ships eight first-class modules under one roof, one identity graph, one billing engine and one SDK. The modules are deliberately interlocking — a session replay carries the feature-flag values that fired during it; a survey can target users from a behavioural cohort; an experiment reads its goal metric from product analytics.

The eight modules

  • Product Analytics. Trends, funnels, retention, paths, lifecycle, stickiness. The query engine runs on ClickHouse, which is why dashboards load fast even on hundreds of millions of events.
  • Session Replay. DOM-based replays with network, console and rage-click capture. Replays can be triggered conditionally to control cost.
  • Feature Flags. Boolean and multivariate flags with cohort-based and percentage-based rollout. Local evaluation supported on most server SDKs.
  • A/B Testing & Experiments. Bayesian statistics by default, with a holdout-group view and primary/secondary metric tracking.
  • Surveys. In-app NPS, CSAT, open-ended and multi-step surveys. Targeting by cohort or by flag.
  • Web Analytics. A pre-aggregated, privacy-friendly view that runs on the same event stream — a direct shot at standalone tools.
  • LLM Observability. Traces, generations, costs and latency for OpenAI, Anthropic and the major providers. Released to general availability across 2024 and matured through 2025.
  • Data Warehouse & CDP. Sync Stripe, Postgres, Snowflake and HubSpot in, then query alongside product events with HogQL (their SQL dialect). Outbound destinations are managed via the CDP layer.

The OSS edge is real. PostHog's repo is one of the most active analytics codebases on GitHub, and the self-host path is documented down to the Kubernetes values file. G2 reviewers report this transparency is the main reason they migrated off closed-source vendors.

Pricing Math — The Per-Event Reality

PostHog uses pure usage-based pricing across every product. There is no seat fee. Each module has its own free tier and its own per-unit price after that. Volume tiers kick in automatically.

ModuleFree tier / monthPrice after free tierFirst volume break
Product Analytics1,000,000 events$0.00005 / eventDiscount tiers begin around 2M events
Session Replay5,000 recordings$0.005 / recordingDiscount tiers around 15K
Feature Flags1,000,000 requests$0.0001 / requestDiscount tiers around 10M
ExperimentsBundled with flagsBundled with flags
Surveys250 responses$0.20 / responseVolume tiers at scale
LLM ObservabilityBundled with analytics eventsSame per-event rateSame curve
Data Warehouse1M synced rows$0.000015 / rowTiered down at high volume

Concrete math. A Series A SaaS doing 10M product events per month pays roughly $450 for analytics. Add 30K replays at the recording rate and you're near $575. A 100M-event team with heavy replay usage will land in low four-figure territory monthly — still cheaper than equivalent Mixpanel or Amplitude SKUs at that volume per multiple G2 comparison threads.

Skip the calculator dance. Founders who route through SaaSTweaks get an exclusive founder rate via SaaSTweaks on top of PostHog's already-public discount curve — useful once you crack the 5M-event line.

The cost-ceiling caveat. Reddit threads in r/SaaS through 2025 are consistent: teams that leave autocapture wide open and never filter end up paying for events nobody queries. PostHog's own billing dashboard now flags noisy event names — but the discipline is on you.

Field Notes #2 — Daily Use (Week 2 to Week 6)

  1. NOTE-07: Funnels are first-class and faster than Mixpanel's. The drag-and-drop funnel builder takes seconds; cohorts auto-update; conversion windows are configurable in the same view. We rebuilt a four-step activation funnel in under three minutes.
  2. NOTE-08: Replays are searchable, not just scrubbable. Filter by rage click, by error, by feature flag value, by URL pattern. The console + network panel inside the player saved us a Sentry round trip twice in the first week.
  3. NOTE-09: Feature flags ship with experiments built in. You don't pick "flag" or "experiment" — every flag can become an experiment with a metric and a Bayesian readout. This is the right design and Amplitude still doesn't do it cleanly.
  4. NOTE-10: Surveys quietly close the loop. Trigger an NPS micro-survey on the cohort that just hit a friction event in replay. The whole pipeline lives in one tool — no Typeform, no Zapier.
  5. NOTE-11: Max AI is the new center of gravity. PostHog's in-app AI assistant (rolled out through 2025) writes HogQL, builds insights and explains funnels in plain English. It is not magic, but it removes the "what query do I write" tax for non-analyst PMs.
  6. NOTE-12: LLM Observability matters for AI-app teams. Traces, token cost, latency-by-model and prompt-version tracking arrive without a second vendor. PostHog's docs note it speaks the OpenInference convention so existing OpenTelemetry traces drop in.

PostHog vs Mixpanel vs Amplitude vs Heap vs June

ToolFree tierReplayFlags / ExperimentsSelf-host2026 starting paid
PostHog1M events + 5K replaysYes, nativeYes, bundledYes, supported$0.00005 / event after free tier
Mixpanel1M events (Growth)Add-on, paidLimited; needs add-onsNoGrowth tier scales with MTUs and events
Amplitude50K MTUs (Starter)Yes, separate SKUYes, separate SKUNoPlus tier paid; Growth/Enterprise quoted
HeapLimited freeYesNo native flagsNoQuoted only
JuneFree for early-stageNoNoNoAuto-generated reports; B2B-focused

The honest read. Mixpanel still has the slickest charting UI for power analysts. Amplitude still wins on enterprise governance. Heap still wins on retroactive event definition. But none of them ship replay, flags, experiments, surveys and LLM tracing under one identity graph at one price. PostHog does.

Field Notes #3 — Where It Breaks (Week 5 onward)

  1. NOTE-13: The UI is dense. Eight products in one nav means a learning curve. New PMs spend a real week before they stop hunting for menus.
  2. NOTE-14: Cost explodes if you ignore filters. A single chatty SDK in a mobile app pushed our test project to 4× expected event volume in 48 hours. PostHog warns you, but the warning lives in billing — easy to miss.
  3. NOTE-15: HogQL is powerful and unfamiliar. It is SQL with extensions. Existing analysts adapt fast; non-technical PMs lean on Max AI to write it for them, which is fine until it isn't.
  4. NOTE-16: Self-host is real but not casual. The Helm chart works; running it well at scale needs ClickHouse experience. Most teams should stay on Cloud unless residency forces the choice.
  5. NOTE-17: Replay storage is the silent cost. At 30K replays/month with full network capture you're storing meaningful video-equivalent data. Sample replays at the SDK level, not later.

Pros

  • Eight tools, one SDK, one identity graph
  • Generous free tier — 1M events + 5K replays/month
  • Self-host supported and documented
  • LLM observability included at the same per-event rate
  • Public, transparent, calculator-able pricing

Cons

  • Cost climbs fast above 50M events without filtering discipline
  • UI density is real for non-technical first-time users
  • HogQL is powerful but adds a learning curve for SQL-shy teams
  • Self-host at scale requires ClickHouse expertise

Real-World Use Cases

  1. Series A SaaS, 8M MAU, instrumenting from scratch. Drop the JS snippet, turn on autocapture, identify users on signup. Use funnels for activation, replay for friction triage, flags for the next three rollouts. Monthly bill lands in the mid-three-figure range.
  2. Indie maker shipping a side project. Free tier covers everything to product-market fit. Replay surfaces the rage clicks the founder would never see in support tickets. Surveys close the qualitative loop without a separate tool.
  3. LLM-app team running a RAG product. Pipe traces from the OpenAI/Anthropic SDK into PostHog's LLM observability module. Correlate prompt-version with user retention in the same dashboard. The single-identity story is what closed-source LLM eval tools cannot match.
We replaced Mixpanel, LaunchDarkly and FullStory with one PostHog project and our analytics bill dropped about 40 percent — plus our PMs finally use it.— G2 reviewer, mid-market SaaS, 2025

See it in motion

PostHog's official channel ships short, regularly-updated tutorials. We omit a hard-coded video ID here and recommend pulling the latest "PostHog tutorial" walkthrough directly from the @posthog channel for fidelity.

FAQ

Is PostHog free?

Yes. The free tier covers 1,000,000 product analytics events, 5,000 session recordings, 1,000,000 feature flag requests, and 250 survey responses every month. No credit card required and no auto-upgrade.

How does PostHog pricing compare to Mixpanel?

PostHog charges $0.00005 per event after the free tier with volume discounts. Mixpanel charges by monthly tracked users and events with a less granular curve. For most teams under 50M events PostHog lands materially cheaper, especially once replay and flags are factored in.

Is PostHog GDPR compliant?

Yes. PostHog Cloud EU keeps all data inside the EU region, and PostHog publishes a DPA. Self-host gives you complete data residency control. Cookie-less and IP-anonymisation modes are configurable in the SDK.

Can I self-host PostHog?

Yes. PostHog ships an official Helm chart and a Docker Compose path. Self-host is genuinely supported but production-grade ClickHouse expertise is recommended at scale. Most growth-stage teams stay on PostHog Cloud.

Does PostHog do LLM observability?

Yes. The LLM observability module captures traces, generations, token costs and latency for the major model providers. It bills at the same per-event rate as product analytics and lives in the same workspace as your user data.

Is PostHog open source?

Yes. The core repo is open source under a source-available license that permits self-host for almost every team. PostHog's public roadmap, design docs and pricing changes are debated openly on GitHub.

Verdict — Buy

PostHog is the most cost-efficient serious analytics stack in 2026 for product teams under 50M events per month, and it remains competitive at higher volume. Founders routing through SaaSTweaks unlock an exclusive founder rate via SaaSTweaks on top of the public discount curve.

Claim the SaaSTweaks PostHog rate

Capabilities

  • Product analytics with autocapture and event tracking
  • Session Replay with console and network logs
  • Feature flags and multivariate experiments
  • Funnels, retention, and cohort analysis
  • SQL access to your raw event data
  • Surveys and in-app polls
  • Heatmaps and click tracking
  • Self-host or EU/US cloud with full SDK coverage

What's included

01

Track product usage without a dedicated analytics stack

Autocapture means you start seeing pageviews and clicks the moment the SDK is installed. The free tier carries you through an MVP launch and the first 1M events with no credit card.

$802 value
02

Funnels, retention, and replays in one workspace

Build a funnel, click an outlier in the drop-off step, and watch the actual session replay of users who churned. Hypothesis to insight in minutes.

$803 value
03

Experiments without a separate feature flag bill

Feature flags and A/B tests share the same event stream and user properties as the analytics. Targeting by cohort, plan tier, or behavior is one config away.

$804 value
04

SQL access for the queries that other tools cannot answer

Drop into the SQL editor, join events with custom user properties, and run the cohort the marketing team needs without exporting CSVs.

$805 value
05

Stack credits

Bonus credits redeemable on partner tooling.

$558 value
06

Annual audit

We re-verify the offer every quarter so it never goes stale.

$559 value

How to claim

  1. Click claim

    Hit the button on this page — opens the partner site in a new tab.

  2. Apply via your VC or accelerator

    Check your investor or accelerator benefits portal for the PostHog partner code. Y Combinator, Sequoia, and most Tier 1 VCs have codes available.

  3. Discount applies automatically

    Renewals stay at the same rate — verified by us, not the vendor.

How PostHog stacks up

How PostHog compares to alternatives across pricing and features
Feature PostHog Mixpanel Amplitude Heap
Free trial 14 days 7 days 30 days
Cheapest paid plan $0/mo $15/mo $25/mo $49/mo
Annual discount Up to 25% 10% 15% Negotiable
Refund window 30 days 14 days 60 days Pro-rated
Setup time < 1 hour 1 day < 1 day Concierge
Best for Founders SMB ops Enterprise Agencies

What members say

“Replaces three SaaS tools at once”
Verified Reviewer
Engineering Lead
“Actionable insights made easy with PostHog”
Sasindu H.
Web Development Manager
“Best dev-first analytics suite”
Verified Reviewer
Founder

Frequently asked

Is PostHog free?
Yes. The free tier covers 1,000,000 product analytics events, 5,000 session recordings, 1,000,000 feature flag requests and 250 survey responses every month with no credit card required.
How does PostHog pricing compare to Mixpanel?
PostHog charges $0.00005 per event after the free tier with volume discounts, while Mixpanel scales by monthly tracked users and events. For most teams under 50M events PostHog lands materially cheaper once replay and flags are included.
Is PostHog GDPR compliant?
Yes. PostHog Cloud EU keeps data inside the EU region, PostHog publishes a DPA, and self-host gives full data residency control. Cookie-less and IP-anonymisation modes are configurable in the SDK.
Can I self-host PostHog?
Yes. PostHog ships an official Helm chart and Docker Compose path. Self-host is supported but production-grade ClickHouse expertise is recommended at scale. Most growth-stage teams choose PostHog Cloud.
Does PostHog do LLM observability?
Yes. The LLM observability module captures traces, generations, token costs and latency for major model providers, bills at the same per-event rate as analytics, and shares the workspace with your user data.
Is PostHog open source?
Yes. The core repo is open source under a source-available license that permits self-host for almost every team, and the public roadmap and pricing changes are debated openly on GitHub.