Setup a Sequin sync
Before you can use Sequin with Glide, you’ll need to create a sync. Sequin will guide you through authenticating, selecting the data you want to sync, and connecting to your database. Read our getting started guide for step-by-step instructions.Create a Postgres integration on Glide
An integration on Glide is a connection to a 3rd-party tool like a database or an API. Sequin uses a Postgres Proxy to interface with your Sequin-synced tables. The Proxy lets Sequin capture inserts, updates, and deletes you make in your database and commit them to the API. To add Sequin’s Postgres Proxy as a Glide integration, you can treat it as a regular Postgres database and enter the connection details in the resource configuration.You’ll need a Glide enterprise plan to connect your app to a Postgres database.
host
, database name
, database username
, and database password
from the Connection instructions tab of your Sequin dashboard:

Using the Postgres integration in Glide
Now, Sequin is syncing your API data to Postgres. You’ve also connected Glide to Postgres via Sequin’s Proxy. To add this data in your Glide app, go back to your Glide dashboard and select the app you just created: Step 1: Navigate to the Data tab from the top and click the Add (+) button. Select SQL and then choose PostgreSQL. Step 2: Select a table in the modal that appears. Click Continue and in a few seconds, you should have data flowing from Airtable through the Sequin Proxy to your Glide app. In the example below, data from an Airtable base used for tracking bugs is now immediately available in Glide.
If you already had other tables in your Glide app, you can choose the Postgres table from the Source dropdown from the table’s configuration.

Writing back to the API
With Sequin, you can also mutate records via your database. Inserts, updates, and deletes you make to Sequin-synced tables are first applied to the API. If they pass validation, they’re committed to your database.Inserts
You can insert data into your table by clicking on the Add button at the top. This opens a modal on the right-side where you can enter data corresponding to different rows. After entering them, click Submit to save the data to your upstream source via the Sequin Proxy.Make sure you hide the
id
or api_id
fields from the interface. Instead of the user entering these values, the Sequin proxy will retrieve these id
s for the record after completing the insert.
Updates
To edit table data, click on a row and select the Edit option. You can also click on the 3-dot icon next to a row and select Edit. Once you make the required changes, click Submit.
Deletes
To delete table data, click on the 3-dot icon on a row and select Delete. If you don’t have the option to delete a row, make sure it is enabled on your collection. As with inserts and edits, click on the table, go to the Actions tab, and enable the option to delete items.Errors
Your upstream source is the source of truth for your data. The Sequin Proxy validates all operations against the upstream source. When a validation fails, the Sequin Proxy returns an error and Glide displays this as an error notification.