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.
_10select_10 customer_id_10 currency_10from_10 stripe.customers;_10_10 customer_id | currency _10--------------------+-----------_10 cus_MJiBtCqOF1Bb3F | usd _10(1 row)
Usage#
Enable the extension#
- Go to the Database page in the Dashboard.
- Click on Extensions in the sidebar.
- 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.
Alternatively, you may also set up foreign data wrappers through the dashboard by going to the Wrappers page.
Integrations#
Resources#
- Official
supabase/wrappers
documentation