= {
// Prisma Compute usage pricing — locked in on the /pricing page (Shane,
// 2026-08-24), whose plan cards and spec table are the source of truth these
-// values must match. Requests are the only meter with an included monthly
-// allowance; memory, CPU, and bandwidth are billed per use on paid plans, and
-// the Free plan has no usage billing. USD-only strings, like the spec table —
+// values must match. The Free plan has monthly hard limits for every meter and
+// no usage billing. Paid plans include requests and bill every meter by use.
+// USD-only strings, like the spec table —
// the currency toggle only covers the plan cards.
export type ComputeMeter = {
meter: string;
@@ -353,12 +353,12 @@ export const faqs: Array<{ question: string; answer: string }> = [
{
question: "How many operations do I need for my project?",
answer:
- 'While the answer to this question will vary from project to project, there are a couple of ways to get an idea of what you will need:
- If you already have a database with another provider, you can often look in their dashboard to see your current usage. The number of queries will be a good hint to the approximate number of operations you’ll use.
- If you already use the Prisma ORM, you can enable the metrics feature to begin tracking your usage, which is an easy and accurate way to see your current usage.
- If you’re starting a new project, we encourage you to just get started and see how many queries you typically use. We offer a free plan with 100,000 operations per month, meaning you can confidently get started without paying anything. From our experience, 100,000 operations per month is more than enough to get started with a project and serve your first users.
You can find an example calculation for a medium-sized workload in our blog post about our operations-based pricing model.
',
+ 'While the answer to this question will vary from project to project, there are a couple of ways to get an idea of what you will need:
- If you already have a database with another provider, you can often look in their dashboard to see your current usage. The number of queries will be a good hint to the approximate number of operations you’ll use.
- If you already use the Prisma ORM, you can enable the metrics feature to begin tracking your usage, which is an easy and accurate way to see your current usage.
- If you’re starting a new project, we encourage you to just get started and see how many queries you typically use. We offer a free plan with 200,000 operations per month, meaning you can confidently get started without paying anything. From our experience, 200,000 operations per month is more than enough to get started with a project and serve your first users.
You can find an example calculation for a medium-sized workload in our blog post about our operations-based pricing model.
',
},
{
question: "Can I use Prisma Postgres for free?",
answer:
- "We include a free threshold of 100,000 database operations per month on the Free plan, meaning you can use Prisma for free, and only pay if you exceed the threshold. From our experience, 100,000 operations per month is more than enough to get started.
We always send usage notifications to let you know when you’re approaching the threshold, so that you’re always in control of your spending.
",
+ "We include a free threshold of 200,000 database operations per month on the Free plan. From our experience, 200,000 operations per month is more than enough to get started.
We always send usage notifications to let you know when you’re approaching the threshold.
",
},
{
question: "Can I set spending limits to control my budget?",