Is there a way to display Airtable records as content in Webflow without importing them to CMS collections?

Published on
September 22, 2023

Yes, there is a way to display Airtable records as content in Webflow without importing them to CMS collections. Here's how you can do it:

  1. Set up your Airtable account:
  • Create an account on Airtable if you haven't already.
  • Set up a base and add the necessary fields to store your data.
  1. Retrieve the Airtable API:
  • In Airtable, go to your base and click on "Help" in the top right corner.
  • Select "API documentation" from the dropdown menu.
  • In the API documentation, navigate to the section that shows you how to authenticate using the API key and retrieve your records.
  1. Connect Airtable to Webflow:
  • In Webflow, go to the Designer and open the settings panel for your project.
  • Scroll down to the "Integrations" section and click on the "API" tab.
  • Click on the "Add an API Key" button and enter a name for your API key.
  • Copy the API key that Webflow generates for you.
  1. Create a custom integration in Airtable:
  • Go back to Airtable and navigate to your base.
  • Click on the "Help" button again and select "API documentation" from the dropdown menu.
  • In the API documentation, navigate to the section that shows you how to make a request to retrieve records.
  • Use a service like Postman or a programming language of your choice to make a GET request to the Airtable API using your API key and base ID.
  • Parse the response to extract the necessary data.
  1. Display the Airtable records in Webflow:
  • In Webflow, open the Designer and navigate to the page where you want to display the Airtable records.
  • Place an HTML Embed element on the page where you want the records to be displayed.
  • Inside the HTML Embed element, write custom code using JavaScript or a framework like Vue.js to make a request to your custom Airtable API integration and retrieve the records.
  • Use the retrieved data to dynamically generate the content and display it on the page.

By following these steps, you can display Airtable records as content in Webflow without importing them to CMS collections. This allows you to have real-time data from Airtable displayed on your Webflow site.

Additional Questions:

  1. How can I connect Airtable to Webflow?
  2. What is the Airtable API and how does it work?
  3. Can I update Airtable records from my Webflow site?