Connect to Airtable
You can connect your application to an Airtable database to get and send data.
In this article
⚡️ TEMPLATE AVAILABLE : Airtable Animals Quiz
Add this template to your account in a few clicks. Edit and customize it freely.
Create an Airtable account
Airtable is a SaaS solution combining spreadsheet, database and project management. Airtable simply allows you to manage a large amount of data in a hybrid way, and not only numbers: phone numbers, dates, barcodes, photos... Its simple, intuitive and often free use makes it an essential tool in the no code ecosystem.
Create a free account on Airtable: https://airtable.com/signup
Structure your base
👉For more information about Airtable, visit the Help Center: https://support.airtable.com/
Create a Personal Token (token)
Since 2024, Airtable has strengthened its security rules and invites you to create a personal token (token) for your API connections.
To create a personal token:
- Go to the dedicated space in your Airtable account: https://airtable.com/create/tokens
- Click on the button Create token
- Choose a Name, a Scope and an associated base. If you want to display data, choose Read.
- Your personal token is ready to be used. Copy and paste it into a secure location.
Configure the HTTP compoent
Click on Components and insert an HTTP component. For your component to be accessible throughout your application, insert it at the Project level. Otherwise insert it in a screen or foreground.
URL
https://api.airtable.com/v0/appIGPMYLUbwWCCbZ/Table%201
Personal token
Cache management
Caching allows you to efficiently reuse previously retrieved or processed API data. Choose from the following options:
-
No cache: the application will make a network call and will not read the cache
-
Cache first: the application will look for the result in the cache before making a request to the network.
- Network and cache: the application will return the content of the cache but will still make the request to update it. This option allows to have a fast answer.
Test request
This is also where you can configure the pagination. Airtable limits the number of results to 100 per page but you can easily remove this limitation. Learn more about this: API pagination
Display data
Insert a Collection component to display your Airtable data as a list. Create a custom design and connect it to this HTTP component. You can add filters, create bookmarks, search.
💡 Learn how to display a collection from Airtable : Display collection
Start request