We simplify
database queries
so you don’t have to
figure it out
We simplify
database queries
so you don’t have to
figure it out
We simplify
database queries
so you don’t have to
figure it out
Let your team ship features faster,
and leave the database complexities to us.
Build with your database — with a great DX
Build with your database —
with a great DX
Build with your database —
with a great DX
Prisma provides the best experience for your team to work and interact with databases. Connection pooling, caching, real-time database subscriptions are a breeze with our products
Prisma provides the best experience for your team to work and interact with databases. Connection pooling, caching, real-time database subscriptions are a breeze with our products
BUILD
STREAMLINE YOUR DEVELOPMENT
Simplify building applications with our intuitive tools, simplifying database interactions, schema evolution, and data management. Lay a solid foundation for your application while ensuring adaptability to future needs.
ORM
Talk to your database, easily
Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
Learn more
STUDIO
Explore and manipulate data
With a simple tabular interface you can quickly have a look at the data of your local database and check if your app is working correctly.
Learn more
FORTIFY
CONSISTENT PERFORMANCE
Ensure that your database and queries are running at peak performance and efficiency. Easily handle connections to your database and scale with your traffic with Accelerate, with no infrastructure to manage.
OPTIMIZE
AI-driven query analysis
Gain deep insights and get actionable recommendations to improve your database queries, making your app run faster.
Learn more
Queries
Groups
Recommendations
ID
Recommendation
#1
Excessive number of rows returned
#2
Query will force the database to scan the full table
#3
Query on unindexed column
GROW
ADAPT AS YOUR APP evolves
Scale confidently with infrastructure that adapts to your application. Prisma expands your application's capabilities to handle increased traffic, and work with your database in completely new ways.
Accelerate
Up to x1000 faster queries
Set up a global cache and a connection pool for your database to enable a lightning-fast experience for your users as your application grows.
Learn more
Pulse
Listen to your database
Subscribe to real-time data changes in your database, with type-safety. Let your database talk to you and enable real-time experiences in your applications.
Learn more
BUILD
STREAMLINE YOUR DEVELOPMENT
Simplify building applications with our intuitive tools, simplifying database interactions, schema evolution, and data management. Lay a solid foundation for your application while ensuring adaptability to future needs.
ORM
Talk to your database, easily
Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
Learn more
STUDIO
Explore and manipulate data
With a simple tabular interface you can quickly have a look at the data of your local database and check if your app is working correctly.
Learn more
FORTIFY
CONSISTENT PERFORMANCE
Ensure that your database and queries are running at peak performance and efficiency. Easily handle connections to your database and scale with your traffic with Accelerate, with no infrastructure to manage.
OPTIMIZE
AI-driven query analysis
Gain deep insights and get actionable recommendations to improve your database queries, making your app run faster.
Learn more
Queries
Groups
Recommendations
ID
Recommendation
#1
Excessive number of rows returned
#2
Query will force the database to scan the full table
#3
Query on unindexed column
GROW
ADAPT AS YOUR APP evolves
Scale confidently with infrastructure that adapts to your application. Prisma expands your application's capabilities to handle increased traffic, and work with your database in completely new ways.
Accelerate
Up to x1000 faster queries
Set up a global cache and a connection pool for your database to enable a lightning-fast experience for your users as your application grows.
Learn more
Pulse
Listen to your database
Subscribe to real-time data changes in your database, with type-safety. Let your database talk to you and enable real-time experiences in your applications.
Learn more
BUILD
STREAMLINE YOUR DEVELOPMENT
Simplify building applications with our intuitive tools, simplifying database interactions, schema evolution, and data management. Lay a solid foundation for your application while ensuring adaptability to future needs.
ORM
Talk to your database, easily
Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
Learn more
STUDIO
Explore and manipulate data
With a simple tabular interface you can quickly have a look at the data of your local database and check if your app is working correctly.
Learn more
FORTIFY
CONSISTENT PERFORMANCE
Ensure that your database and queries are running at peak performance and efficiency. Easily handle connections to your database and scale with your traffic with Accelerate, with no infrastructure to manage.
OPTIMIZE
AI-driven query analysis
Gain deep insights and get actionable recommendations to improve your database queries, making your app run faster.
Learn more
Queries
Groups
Recommendations
ID
Recommendation
#1
Excessive number of rows returned
#2
Query will force the database to scan the full table
#3
Query on unindexed column
GROW
ADAPT AS YOUR APP evolves
Scale confidently with infrastructure that adapts to your application. Prisma expands your application's capabilities to handle increased traffic, and work with your database in completely new ways.
Accelerate
Up to x1000 faster queries
Set up a global cache and a connection pool for your database to enable a lightning-fast experience for your users as your application grows.
Learn more
Pulse
Listen to your database
Subscribe to real-time data changes in your database, with type-safety. Let your database talk to you and enable real-time experiences in your applications.
Learn more
BUILD
STREAMLINE YOUR DEVELOPMENT
Simplify building applications with our intuitive tools, simplifying database interactions, schema evolution, and data management. Lay a solid foundation for your application while ensuring adaptability to future needs.
ORM
Talk to your database, easily
Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
Learn more
STUDIO
Explore and manipulate data
With a simple tabular interface you can quickly have a look at the data of your local database and check if your app is working correctly.
Learn more
FORTIFY
CONSISTENT PERFORMANCE
Ensure that your database and queries are running at peak performance and efficiency. Easily handle connections to your database and scale with your traffic with Accelerate, with no infrastructure to manage.
OPTIMIZE
AI-driven query analysis
Gain deep insights and get actionable recommendations to improve your database queries, making your app run faster.
Learn more
Queries
Groups
Recommendations
ID
Recommendation
#1
Excessive number of rows returned
#2
Query will force the database to scan the full table
#3
Query on unindexed column
GROW
ADAPT AS YOUR APP evolves
Scale confidently with infrastructure that adapts to your application. Prisma expands your application's capabilities to handle increased traffic, and work with your database in completely new ways.
Accelerate
Up to x1000 faster queries
Set up a global cache and a connection pool for your database to enable a lightning-fast experience for your users as your application grows.
Learn more
Pulse
Listen to your database
Subscribe to real-time data changes in your database, with type-safety. Let your database talk to you and enable real-time experiences in your applications.
Learn more
Build
STREAMLINE YOUR DEVELOPMENT
Simplify building applications with our intuitive tools, simplifying database interactions, schema evolution, and data management. Lay a solid foundation for your application while ensuring adaptability to future needs.
ORM
Node.js and
TypeScript ORM
Open source Node.js and TypeScript ORM with an intuitive data model, automated migrations, type-safety, and auto-completion.
Learn more
Optimize
Deliver consistent performance
Ensure that your database and queries are running at peak performance and efficiency. Easily write queries that make sense to you and let Prisma ORM fine-tune them for optimal database operation.
Sign up for updates
check
check
await prisma.comment.findMany({
where: {
post: {
author: {
name: "John"
}
}
}
})
SELECT
"Comment"."id"
FROM
"Comment"
LEFT JOIN "Post" AS "j1" ON ("j1"."id") = ("Comment"."postId")
LEFT JOIN "User" AS "j2" ON ("j2"."id") = ("j1"."userId")
WHERE
(
"j2"."name" = $ 1
AND ("j2"."id" IS NOT NULL)
AND ("j1"."id" IS NOT NULL)
);
check
Grow
ADAPT AS YOUR APP evolves
Scale confidently with infrastructure that adapts to your application. Prisma expands your application's capabilities to handle increased traffic, and work with your database in completely new ways.
Accelerate
Up to x1000
faster queries
Achieve faster database queries with Prisma Accelerate’s global cache available in over 280 locations and built-in connection pooling.
Learn more
Pulse
Real-time
database events
Subscribe to type-safe data changes in real-time. Smoothly integrate Prisma Pulse with your existing database infrastructure.
Learn more
Works with your stack
Works with your stack
Bring your own database and framework, and change it as you’d like. We’ll make sure everything continues to work seamlessly, so you have the flexibility to evolve without constraints.
Bring your own database and framework, and change it as you’d like. We’ll make sure everything continues to work seamlessly, so you have the flexibility to evolve without constraints.
Learn more
PostgreSQL
MySQL
SQL Server
SQLite
MongoDB
CockroachDB
Planetscale
MariaDB
PostgreSQL
MySQL
SQL Server
SQLite
MongoDB
CockroachDB
Planetscale
MariaDB
PostgreSQL
MySQL
SQL Server
SQLite
MongoDB
CockroachDB
Planetscale
MariaDB
TRUSTED BY MORE THAN 500K ACTIVE devs
“Thanks to Prisma, we can seamlessly scale our applications without concerns about data layer performance ”

Matti Nannt
Co-Founder
|
Formbricks
"Entire SaaS businesses have been built on top of the Prisma ecosystem— including OSS ones like Dub.co. Loving the recent performance improvements as well 🔥"

Steven Tey
Founder
|
Dub.co
"With Prisma, we migrated a core production system from MySQL to SQL Server with zero downtime just by swapping a few references and updating our Prisma schema. I can't imagine building systems without it."

Niko Guerra
Senior Backend Engineer
|
Lush
"Prisma helps us unify data access from multiple enterprise systems into a single API. It means we can move very quickly whilst staying flexible."

Tom Hutchinson
Head of Mobile
|
Rapha
“We adopted Prisma conventions as our standard, and it saves lots of time having from reinventing things ourselves.”

Yuval Hazaz
CEO
|
Amplication
"Prisma has a low learning curve. Productivity becomes higher because it gets combined with end-to-end type-safety using TypeScript."

Ricardo Almeida
Software Engineer
|
Grover
"I have been using Prisma since day one, and it has become my number-one choice for ORM. It’s the default in @supastarter, and the DX of Prisma is just unbeaten"

Jonathan Wilke
Frontend dev
|
Juniqe
"Prisma Accelerate handled 670,000+ webhooks from Shopify when the orders webhook from 2022/23 was fired and it costed us about $11 to handle it all."

Harshdeep Singh Hura
App developer
|
Spotify
"I like how the Prisma docs made it easy to jump straight into using it without needing to do a huge amount of reading, and I instantly felt the benefits."

Daniel Cranney
Developer Advocate
|
WeAreDevs
TRUSTED BY MORE THAN 500K ACTIVE devs
“Thanks to Prisma, we can seamlessly scale our applications without concerns about data layer performance ”

Matti Nannt
Co-Founder
|
Formbricks
"Entire SaaS businesses have been built on top of the Prisma ecosystem— including OSS ones like Dub.co. Loving the recent performance improvements as well 🔥"

Steven Tey
Founder
|
Dub.co
"With Prisma, we migrated a core production system from MySQL to SQL Server with zero downtime just by swapping a few references and updating our Prisma schema. I can't imagine building systems without it."

Niko Guerra
Senior Backend Engineer
|
Lush
"Prisma helps us unify data access from multiple enterprise systems into a single API. It means we can move very quickly whilst staying flexible."

Tom Hutchinson
Head of Mobile
|
Rapha
“We adopted Prisma conventions as our standard, and it saves lots of time having from reinventing things ourselves.”

Yuval Hazaz
CEO
|
Amplication
"Prisma has a low learning curve. Productivity becomes higher because it gets combined with end-to-end type-safety using TypeScript."

Ricardo Almeida
Software Engineer
|
Grover
"I have been using Prisma since day one, and it has become my number-one choice for ORM. It’s the default in @supastarter, and the DX of Prisma is just unbeaten"

Jonathan Wilke
Frontend dev
|
Juniqe
"Prisma Accelerate handled 670,000+ webhooks from Shopify when the orders webhook from 2022/23 was fired and it costed us about $11 to handle it all."

Harshdeep Singh Hura
App developer
|
Spotify
"I like how the Prisma docs made it easy to jump straight into using it without needing to do a huge amount of reading, and I instantly felt the benefits."

Daniel Cranney
Developer Advocate
|
WeAreDevs
TRUSTED BY MORE THAN 500K ACTIVE devs
“Thanks to Prisma, we can seamlessly scale our applications without concerns about data layer performance ”

Matti Nannt
Co-Founder
|
Formbricks
"Entire SaaS businesses have been built on top of the Prisma ecosystem— including OSS ones like Dub.co. Loving the recent performance improvements as well 🔥"

Steven Tey
Founder
|
Dub.co
"With Prisma, we migrated a core production system from MySQL to SQL Server with zero downtime just by swapping a few references and updating our Prisma schema. I can't imagine building systems without it."

Niko Guerra
Senior Backend Engineer
|
Lush
"Prisma helps us unify data access from multiple enterprise systems into a single API. It means we can move very quickly whilst staying flexible."

Tom Hutchinson
Head of Mobile
|
Rapha
“We adopted Prisma conventions as our standard, and it saves lots of time having from reinventing things ourselves.”

Yuval Hazaz
CEO
|
Amplication
"Prisma has a low learning curve. Productivity becomes higher because it gets combined with end-to-end type-safety using TypeScript."

Ricardo Almeida
Software Engineer
|
Grover
Stay updated
Get product updates, tutorials, and more delivered to your inbox monthly.
Ready to try?
Integrate into your existing project, start from scratch, or just take things for a spin.
Integrate into your existing project, start from scratch, or just take things for a spin.
Integrate into your existing project, start from scratch, or just take things for a spin.
PRODUCTS
ORM
Accelerate
Pulse
Pricing
Changelog
Data Platform status ↗
RESOURCES
Docs
Ecosystem
Playground ↗
Customer stories
Data Guide
CONTACT US
Community
Support
Enterprise
Partners
OSS Friends
Company
About
Blog
Data DX ↗
Careers
Legal
angle-down
NEWSLETTER
© 2025 Prisma Data, Inc.
GDPR
HIPAA
COMPLIANT
27001
SOC 2
TYPE II
CERTIFIED
PRODUCTS
ORM
Accelerate
Pulse
Pricing
Changelog
Data Platform status ↗
RESOURCES
Docs
Ecosystem
Playground ↗
Customer stories
Data Guide
CONTACT US
Community
Support
Enterprise
Partners
OSS Friends
Company
About
Blog
Data DX ↗
Careers
Legal
angle-down
NEWSLETTER
© 2025 Prisma Data, Inc.
GDPR
HIPAA
COMPLIANT
27001
SOC 2
TYPE II
CERTIFIED
PRODUCTS
ORM
Accelerate
Pulse
Pricing
Changelog
Data Platform status ↗
RESOURCES
Docs
Ecosystem
Playground ↗
Customer stories
Data Guide
CONTACT US
Community
Support
Enterprise
Partners
OSS Friends
Company
About
Blog
Data DX ↗
Careers
Legal
angle-down
NEWSLETTER
© 2025 Prisma Data, Inc.
GDPR
HIPAA
COMPLIANT
27001
SOC 2
TYPE II
CERTIFIED