Airtable data source

Add the Airtable plugin

In order to get data from Airtable, you first need to add Airtable as a data source in WeWeb:

  1. Go to Plugins
  2. Browse through Data sources
  3. Select Airtable
  4. Add your personal access token
  5. Make sure to click Continue to add the plugin
  6. Then Add a collection of Airtable data

Add the Airtable plugin in WeWeb

Access token vs API key

WARNING

In 2022, Airtable shut down API keys. You now have to enter your Personal Access Token to connect your Airtable account to WeWeb.

You can create Airtable access tokens here.open in new window

Make sure to set it up with the access to the base you want to use in WeWeb, and the proper scopes:

  • data.records:read so that your app can read data from Airtable
  • data.records:write so that your app can write data to Airtable
  • schema.bases:read so that your app can read the schema of your Airtable base and know which types to use in workflows' actions

Airtable scopes

Access token vs token ID

WARNING

When configuring the plugin in WeWeb, make sure you are adding the Airtable access token itself and not the token id of the access token.

When configuring the Airtable plugin in WeWeb, a common mistake is to add the TOKEN ID of an Airtable access token:

Airtable token id

That won’t work.

You need to make sure you copy the access token itself when you first create it:

Airtable access token

You won’t be able to see it again so if you didn’t copy the Personal Access Token when you first created a token, you might need to create a new one.

Create a collection

Once you’ve connected an Airtable account to WeWeb, you will be able to create Airtable data collections in WeWeb:

Select Airtable as a data source

TIP

To build dynamic web applications, we highly recommend creating Dynamic collections.

However, if you run into Airtable rate API limits, you may want to consider working with a Cached collection instead.

Learn more about WeWeb collection modes.

Select data to fetch

Once you've selected a source for your collection, you will get access to the Configuration tab, you can select very precisely what data you want to fetch from Airtable.

Required fields include the base, table, view, and fields you want to fetch:

Airtable collection configuration

Filters by formula

You also have the option to add query data with filters so that Airtable only sends specific data to your WeWeb frontend.

The filters available are documented in Airtable's own API documentationopen in new window.

For example, you can user a filter by formula to search a text through a list of items: SEARCH(stringToFind, whereToSearch)

In WeWeb, it would look something like this: 'SEARCH(" ' + variable + ' ", Car_name)'

The tricky part here will be getting the quotes right because the Airtable API expects the search term to be in between quotes like it is here:

Airtable filter by formulas

Indeed, in the Current value displayed in WeWeb, you can see the entire formula is in between quotes and so is the search term "Volk". That is the data format expected by Airtable's API. Make sure to stick to it.

WARNING

Filters by formula are a performance tool, not a security or privacy tool. Indeed, filters by formula can help you optimize the performance of your web app by optimizing the data you load on the page. However, keep in mind that the query parameters are visible in the API call that is made to Airtable by the frontend.

This is not specific to WeWeb. It is how Airtable's API currently works.

If you need security: make sure to use a backend with the capacity to enable authentication and access control checks on API endpoints (e.g. Xano) or RLS on the database (e.g. Supabase).

Learn more about adding security to the web-apps you build with no-code toolsopen in new window.

Fetch data

Once you've configured the data you want to fetch from Airtable, you can decide if you want to fetch this collection automatically and if you want to preserve it on navigation:

Fetch data step

Fetch automatically

When Fetch this collection automatically is enabled, the collection will automatically be fetched when a page that contains the collection is loaded in the user's navigator.

Sometimes, you want to disable this option to have finer control of where and when the data is fetched.

For example, you might want to fetch a collection when a user clicks on a specific button in your app.

Preserve on navigation

When Preserve on navigation is enabled, the collection is only fetched the first time a user loads a page with that collection.

Sometimes, you want to disable this option to have finer control of where and when the data is preserved in the user's navigator.

For example, you might want to make sure that a user's data is not preserved on navigation so that, if two users login from the same computer, user A can't see user B's data after they've logged out.

Sort, filter, and paginate the data in WeWeb

At this stage, you have fetched the data from Airtable. It is available for use in WeWeb.

Any sort, filter, or pagination you add here is done in the frontend. This means that, even if the data is not displayed on the page, it is accessible in the user's browser. Learn when to use frontend vs backend filters.

Learn how to display Airtable collection data in WeWeb

Update Airtable data

Use case: when a customer returns a rental car, you want employees at the rental location to update the mileage of that car.

In order to do this, you will have to create a workflow that allows users to create, update, or delete a record in Airtable:

Airtable CRUD actions

Once you have chosen the type of action you want to trigger, you will be invited to send information to Airtable:

Airtable CRUD example

In the example above, you can see:

  1. we will update the record
  2. in the Fleet - Dynamic collection
  3. that has the same id as the id in our selectedLine variable
  4. we will update the Mileage column
  5. with the the 506 value

WARNING

If the field in Airtable is a number, make sure to send a number. If you try sending a text to a number field, you will get an error. If you try sending a number to a multi-select field, you will also get an error.

Learn more about variables and data types.

Partial update

If you want to update specific fields in Airtable and not an entire record, make sure to only select the fields you want to update.

In the example below, you can see (on the right) that we only selected the Mileage field. As a result, when we test our action, we can see in the payload sent to Airtable (on the left) that we are only sending data to update the Mileage field of the record:

Airtable partial update

If we select all the fields without filling in values, we are telling Airtable, please replace the values in these columns with null.

In the example below, the columns Car_name, Image, PDF, etc. will now be empty for that record in Airtable because we told Airtable the value for these fields are null:

Sending null values to Airtable

Host Airtable images and files on a CDN

It is no longer possible to use Airtable's attachment hostingopen in new window because links will only last 2 hours before they need to be regenerated.

What's the impact on your WeWeb projects?

When using dynamic collections, you can still use Airtable attachments as image or file URLs in WeWeb because the links are fetched when you fetch a collection (on page load by default or when you trigger the fetch in a Workflow).

However, if you are using static or cached collections, you'll need to upload your Airtable attachments to a CDN like Cloudflare or AWS S3, and use the links from the CDN in WeWeb.

We realize it's hard tedious work, so we made a small tutorial on how to fix this automatically on Airtable by using Xano to host images, and a small Airtable automation.

Step 1: make sure you've got a Xano instance and an endpoint to upload contentopen in new window.

Step 2: in Airtable, create a new text column on your table that'll be used to store the images' URLs in the CDN:

Airtable column with URLs

Step 3: in Airtable, create an automation that is triggered "When record updated" and watch your former image/file column:

Airtable automation when record is updated

Step 4: add an action to run a script and copy/paste this script:

const xanoBaseUrl = 'https://xc0b-vcze-d4we.n7.xano.io' // Edit this variable to match your Xano instance subdomain
let table = base.getTable('property')

let config = input.config()
let recordId = config.updatedRecordId

let record = await table.selectRecordAsync(recordId, {fields: table.fields})

let images = record.getCellValue('images') // Update this value to match your image/file attachment column
let imagesUrlCdn = []

for (let image of images) {
    let imageUrl = image.url
    let result = await fetch(xanoBaseUrl + '/api:SJOHbPGi/upload/image', { // Update this path to match your Xano upload file endpoint
        method: 'POST',
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        },
        body: JSON.stringify({'content': imageUrl})
    })
    let response = await result.json()
    let imageUrlCdn = xanoBaseUrl + response.path
    imagesUrlCdn.push(imageUrlCdn)
}

await table.updateRecordAsync(record, {
    'images_urls': imagesUrlCdn.join() // Update the key to match your newsly created URL column
})

Step 5: replace xanoBaseUrl by your own Xano instance and change the column names in the script to match the ones in your table (they are marked with comments in the script).

Step 6: activate the automation in Airtable. Now, every time an attachment is added to the column in Airtable, the newly created URL column will display the CDN's URLs, joined by a comma (",").

To use the images in WeWeb, simply use this newly created column as your images source inside your project (you can get back the URLs by splitting the string on the commas, like so):

Formula to split the URLs

Video Mini-Course

If you want to dig deeper and learn how to develop a WeWeb app with an Airtable backend, you can watch our YouTube series on the topic:

  1. How to Get and Display Data from Airtable in a WeWeb app
  1. How to Search and Paginate an Airtable collection in a WeWeb app
  1. How to use Airtable Related Fields in a WeWeb app
  1. How to Write Data to Airtable from a WeWeb app
Last Updated:
Contributors: Joyce Kettering