Monetization · Written review

Charging for Chat: The Stripe Pay-to-Chat Pattern

2,085 views on YouTube 6 min read

TL;DR — the 20-second version

Let users pay to chat with your chatbot — the Stripe + Typebot + Retune setup from the video, and why pay-to-chat is a better business model than another subscription.

This is the most-viewed tutorial on the channel for a reason: it’s the one where the chatbot starts making money.

The pitch is simple — let users chat for free up to a limit, then pay to continue — and the video walks the high-level wiring using Typebot, Retune, and Stripe Checkout.

The pattern

  1. Free questions first. The bot answers normally for the first few messages. This is the demo that sells itself — the visitor gets real value before being asked for a cent.
  2. The gate. Hit the question limit and the flow pivots: here’s what you get, here’s the price, here’s a Stripe Checkout link.
  3. Payment unlocks the session. After checkout, the flow continues into the paid experience — deeper answers, unlimited questions, whatever you promised.

No middleware servers, no custom auth stack. Typebot holds the conversation logic, Retune provides the AI, Stripe does what Stripe does.

What I actually think

The mechanics are the easy part. The limit choice is the product. Cut users off too early and nobody ever sees the paid tier working; too late and nobody needs to pay. In the video’s shape, a handful of free questions is right — enough to build trust, few enough that serious users hit the wall.

The second thing nobody talks about: state. “Has this person paid?” has to survive a page refresh. The video stays high-level on purpose — the moment you build this for real, you’re deciding whether the payment token lives in the URL, a cookie, or your own database. Plan for that before you wire Stripe, not after.

Gotchas I’d flag before you copy this

  • Test mode is not optional. Wire the entire flow with Stripe test keys first. Webhook surprises are cheaper in fake money.
  • Refunds and failures need a story. What does the bot say if payment is abandoned halfway? (Answer: pick up where it left off. Never make them start over.)
  • Don’t gate trust. The free tier has to be genuinely useful. A bot that’s useless until you pay converts no one.

Who should build this

Anyone sitting on knowledge worth paying for — documentation, expert answers, document review. If you’ve been waiting for “the right business model” for a chatbot, this video is the nudge: the model is the chat is the product.

Watch the video