Listing Thumbnail

    Supabase

     Info
    Sold by: Supabase 
    Deployed on AWS
    Supabase is the Postgres development platform. Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.
    4.7

    Overview

    Supabase is a comprehensive platform for application development, providing seamless integration of essential tools and functionalities to streamline the development process including:

    * Postgres: Every Supabase project is a full Postgres database, the most trusted relational database in the world.

    * Authentication: Add user sign ups and logins, securing your data with Row Level Security.

    * Edge Functions: Easily write custom code without deploying or scaling servers.

    * Storage: Store, organize, and serve large files, from videos to images.

    * Realtime: Build multiplayer experiences with realtime data synchronisation.

    * Vector: Integrate your favorite ML-models to store, index and search vector embeddings

    * Works seamlessly with 20+ frameworks including Next.JS, React, Nuxt, Flutter, Svelte, and Vue.


    SOC2 Type 2 Certified and HIPAA Compliant solutions available for Enterprise and Team plans.

    For a custom quote to meet your specific configuration needs, please visit https://forms.supabase.com/enterprise  or reach out to your sales representative before placing an order on this page.

    To get started and explore the platform, you can sign up for the Free Plan on https://supabase.com .

    Highlights

    • Instant APIs that do the hard work for you: We introspect your database to provide APIs instantly. Stop building repetitive CRUD endpoints and focus on your product.
    • Build your app without leaving the Supabase dashboard: Manage your data with the familiarity of a spreadsheet. Write, save, and execute SQL queries directly on our dashboard, with templates to save you time. Run common queries and even build applications using our growing list of templates. Easily manage your users with Supabase Auth, with email logins, magic links, and third-party logins. Create complex access policies with SQL rules to fit your unique business needs.
    • Infrastructure to innovate and scale with ease. See how Supabase empowers companies of all sizes to accelerate their growth and streamline their work. Read more at https://supabase.com/customers.

    Details

    Sold by

    Delivery method

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Pricing is based on the duration and terms of your contract with the vendor, and additional usage. You pay upfront or in installments according to your contract terms with the vendor. This entitles you to a specified quantity of use for the contract duration. Usage-based pricing is in effect for overages or additional usage not covered in the contract. These charges are applied on top of the contract price. If you choose not to renew or replace your contract before the contract end date, access to your entitlements will expire.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    1-month contract (2)

     Info
    Dimension
    Description
    Cost/month
    Pro Plan - from $25/mo
    For production applications with the power to scale. For details, see: https://supabase.com/pricing.
    $25.00
    Team Plan - from $599/mo
    Add features such as SSO, control over backups, and industry certifications. For details, see: https://supabase.com/pricing.
    $599.00

    Additional usage costs (1)

     Info

    The following dimensions are not included in the contract terms, which will be charged based on your usage.

    Dimension
    Description
    Cost/unit
    Usage
    For usage beyond the subscription plan's quota. For details: https://supabase.com/pricing
    $0.01

    Vendor refund policy

    No refunds.

    Custom pricing options

    Request a private offer to receive a custom quote.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Software as a Service (SaaS)

    SaaS delivers cloud-based software applications directly to customers over the internet. You can access these applications through a subscription model. You will pay recurring monthly usage fees through your AWS bill, while AWS handles deployment and infrastructure management, ensuring scalability, reliability, and seamless integration with other AWS services.

    Resources

    Vendor resources

    Support

    Vendor support

    The Supabase Pro, Team, and Enterprise plans include email and community support options. Alternatively, users can seek assistance and share knowledge with Supabase's vibrant and active community through the company's GitHub discussions and Discord server.
    support@supabase.com 

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    4.7
    41 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    88%
    12%
    0%
    0%
    0%
    0 AWS reviews
    |
    41 external reviews
    External reviews are from G2 .
    Health, Wellness and Fitness

    Postgres + RLS and Phone OTP Made Shipping Our Expo App Fast

    Reviewed on May 12, 2026
    Review provided by G2
    What do you like best about the product?
    Honestly, the biggest thing for us is Postgres as the source of truth, with RLS doing most of the auth work. We ship a React Native app on Expo, and instead of building a separate API layer plus auth middleware, row-level security policies handle about 90% of access control directly in the database. When we add a new table, we write the policy once and the client can query it via the JS SDK—no controllers, no DTOs, and no glue code.

    Phone OTP auth was the other huge win. We’re India-first and phone-first, and Supabase Auth ships with phone OTP out of the box. You plug in an SMS provider and you’re basically done. It probably saved us around two weeks of building and maintaining our own auth flow.

    The dashboard SQL editor sounds boring, but I use it 10x a day. When something looks off in prod, I open the editor, run a query, and fix a row. No SSH tunnel and no separate admin panel. Saved queries and history are genuinely useful when you’re debugging the same data shapes over and over.

    Edge Functions in Deno have been great for webhook handlers and cron jobs. supabase functions serve gives you real local-to-prod parity, so the dev loop stays fast. And the local CLI stack (Postgres + Studio in Docker) means we never have to touch prod data while testing schema changes.

    Pricing is the kicker: Postgres + auth + storage + edge functions on the Pro plan costs less than Firebase alone would for our usage.
    What do you dislike about the product?
    After running this in production, I’ve hit a few real pain points.

    Cold starts on Edge Functions are noticeable. The first invocation after idle can take 800ms–1.5s, which is rough for user-facing endpoints. We’ve ended up keeping functions warm with a cron, but that feels more like a workaround than a real solution. The dashboard performance also drops once a table gets past a few hundred thousand rows. On our largest table, opening the table editor is sluggish enough that I usually switch to the SQL editor instead.

    Support on the free/Pro tier is limited to community Discord and GitHub Discussions. That’s fine for general questions, but it’s slow when you run into something blocking in prod. Paid support is gated behind the Team plan, which is a steep jump from Pro. We’ve had a couple of incidents where I would’ve happily paid per incident for a direct response.

    The Supabase AI assistant in Studio is hit-or-miss. For SQL, it’s decent for simple queries, but it hallucinates surprisingly often on schema-aware questions, suggesting columns or joins that don’t exist in our schema. In practice, Cursor + the Supabase MCP has been more useful day to day than the in-dashboard assistant.

    The migrations workflow has rough edges too. The db diff sometimes generates noisy diffs that include things you didn’t change (like default value reformats or trigger reorderings), so you end up hand-editing migration files more than you should.
    What problems is the product solving and how is that benefiting you?
    We needed a backend stack for our React Native app that didn’t require us to run our own infrastructure. Supabase replaced what would have been a Node/Express API, Auth0, S3, a managed Postgres host, and a job runner—all consolidated into a single platform with one CLI and one dashboard.

    The Postgres ecosystem integration is a big part of why this works for us. We can stick with standard pg tooling, standard migrations, and standard SQL—there’s no proprietary query language to learn. And when we need Postgres extensions like pgvector, pg_cron, or PostGIS, they’re essentially a click away. On the client side, the Expo/React Native SDK plugs in cleanly: auth, realtime subscriptions, and storage uploads all work without us having to build and maintain a wrapper layer.

    The practical payoff is speed. As a small team, we can ship features at a pace that would otherwise require a dedicated backend engineer. A feature that needs a new table, an auth-gated endpoint, file storage, and a webhook handler used to mean a week of glue code; with Supabase, it’s more like an afternoon. That time saved goes straight back into product work, which is what matters most at our stage.
    Radek M.

    Perfect Remote DB for My React Native Mobile App

    Reviewed on May 04, 2026
    Review provided by G2
    What do you like best about the product?
    Remote DB for my mobile app on react native
    What do you dislike about the product?
    So far I have nothing to dislike. Or IDK.
    What problems is the product solving and how is that benefiting you?
    I have fast PostgreSQL database for my maps app, that needs to be super fast
    Sean T.

    Effortless Database Management with Great UI

    Reviewed on Apr 30, 2026
    Review provided by G2
    What do you like best about the product?
    I use Supabase for hosting databases for tools. I appreciate that it allows a very simple and easy way to spin up a database, which is easy to access from code and apps. It also offers a good UI and front end to manage those databases. I like the free tier and the ease of use of Supabase. The initial setup is incredibly easy.
    What do you dislike about the product?
    I wish there were more ways to sign in. Google Auth would be nice.
    What problems is the product solving and how is that benefiting you?
    I find Supabase offers a simple way to spin up databases, making them easy to access from code and apps, with a good UI to manage them.
    Rishabh S.

    Best Friend Every Developer Needs

    Reviewed on Apr 21, 2026
    Review provided by G2
    What do you like best about the product?
    I like Supabase Auth. All you need to do is add the passkeys, enable the SSO toggle, and you're done. It's really easy, fast, and straightforward to configure. It's also very easy to integrate with providers like Google and GitHub. It's free for young developers, and offers one-click onboarding. All projects are listed on the dashboard, and they have an AI that analyzes the database and finds security vulnerabilities.
    What do you dislike about the product?
    Supabase and run a query manually, which I find difficult. It also makes me nervous — I'm always worried about accidentally deleting my database, especially since I'm using Supabase in my product, Lync.life. On top of that, I find it a little slow sometimes.
    What problems is the product solving and how is that benefiting you?
    he fact that it's free is a huge plus, especially when you're building something from scratch and don't want to worry about costs piling up. It's simple enough that I didn't have to spend days figuring things out — I could just get started. The MCP support is a nice touch too, it fits right into my workflow without any friction. What really gives me peace of mind is the built-in AI that catches and fixes database mistakes — that kind of safety net means a lot when you're dealing with real data. I'm actually running it on my live project right now with large database connections, and honestly, it just works. No drama, no surprises.
    Information Services

    Simple to Use, Powerful Ecosystem That Just Works

    Reviewed on Apr 16, 2026
    Review provided by G2
    What do you like best about the product?
    Simple to use, powerful ecosystem that does more than the sum of it's parts
    What do you dislike about the product?
    Can feel intimidating to begin with, but picking hairs at this point...
    What problems is the product solving and how is that benefiting you?
    It's a central place to orchestrate, store and analyse data, it integrates seamlessly, and scales with your growth
    View all reviews