Home

wrappers: 3rd Party Integrations

supabase/wrappers is a PostgreSQL extension that provides integrations with external sources so you can interact with third-party data using SQL.

For example, the Stripe wrapper connects to Stripe's API and exposes each endpoint as a SQL table.

select
  customer_id
  currency
from
   stripe.customers;

    customer_id     | currency 
--------------------+-----------
 cus_MJiBtCqOF1Bb3F | usd      
(1 row)

Usage#

Enable the extension#

  1. Go to the Database page in the Dashboard.
  2. Click on Extensions in the sidebar.
  3. Search for "wrappers" and enable the extension.

Instructions for setting up connections to each 3rd party service via SQL are available at the links in the integrations section below. A web interface for connecting to external data is coming to Supabase Studio in 2023.

Integrations#

Resources#

Need some help?

Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.