SaaS around Stripe API
Tl;DR
You can get me wrong: automate your payments and dont accept any other form that does not require your attention.
From the quote / post / learnings: sell to the rich, they pay better.
Intro
Congratz, you are registered into the app!
Now subscribe to get additional goodies :)
This is not exactly a stripe 101, as I have played with it before:
But just some kind of stripe recap, as there are multiple use cases:
- Use Stripe + Webhooks + Pocketbase collections as mentioned here
- Stripe API + Streamlit to allow an user to login / see certain features
Why Stripe
Bc you can configure your products, prices, payments etc via their UI.
Plus you get a cool API.

Also, stripe provides a dashboard to manage subscriptions.
Stripe Products
Stripe Subscriptions
I tried stripe subscriptions linkshere, for the mental health delivery.
One Time Payments
People are using them to sell ebooks https://readmake.com/ or ways to code: https://codefa.st/#pricing, https://shipfa.st/?ref=indiepage
Or to sell simple microSaaS services like: https://poopup.co/
Stripe Webhooks
Conclusions
- Just learn how to do quick & cool landing pages, like:
https://codefa.st/#pricingorhttps://indiepa.ge/
With a Pricing section having by default the yearly plans discounted (and in a tab the monthly ones)
Example
https://fireflies.ai/pricing?billing=monthlyfor audio
- Bring your singin flow into place
Modern signups look like:
https://www.mailerlite.com/signuporhttps://app.fireflies.ai/login
- Place some features behind Stripe.
What about Clerk?
Clerk is a good alternative to Supabase Auth. https://clerk.com/docs which brings an interesting Py SDK
Auth Alternatives for webapps…π
FAQ
RLS - row level security is very important!
Make sure that one user can only edit records related to that particular user.
Also pwd’s should be hashed on the DBs, just in case the DB gets compromised.