Airtable
Connect Airtable to your preprocessing pipeline, and use the Unstructured Ingest CLI or the Unstructured Ingest Python library to batch process all your data and store structured outputs locally on your filesystem.
You will need:
The Airtable connector prerequisites:
-
An Airtable account. Create a free Airtable account.
-
An Airtable personal access token. Create a personal access token.
-
The ID of the Airtable base to access. Create a base. Get a base’s ID.
-
The ID of the table to access in the base. Create a table. Get a table’s ID.
-
The ID of the view to access in the table. Create a view. Get a view’s ID.
By default, Unstructured processes all tables from all bases within an Airtable organization. You can limit the
tables that Unstructured ingests data from within Airtable by specifying a list of Airtable paths.
An Airtable path uses the following structure: base_id/table_id(optional)/view_id(optional)
For example, given the following example Airtable URL:
- The base’s ID is
appr9nKeXLAtg6bgn
. The base’s path isappr9nKeXLAtg6bgn
. - The table’s ID is
tblZ8uT1GY7NLbWit
. The table’s path isappr9nKeXLAtg6bgn/tblZ8uT1GY7NLbWit
. - The view’s ID is
viwDcpzf9dP0Gqz5J
. The view’s path isappr9nKeXLAtg6bgn/tblZ8uT1GY7NLbWit/viwDcpzf9dP0Gqz5J
.
You can call the Airtable API to get lists of available IDs for Airtable bases, tables, and views in bulk, as follows:
The Airtable connector dependencies:
You might also need to install additional dependencies, depending on your needs. Learn more.
These environment variables:
AIRTABLE_TOKEN
- The Airtable personal access token, represented by--personal-access-token
(CLI) orpersonal_access_token
(Python).AIRTABLE_PATHS
- The list of Airtable paths to process, represented by--list-of-paths
(CLI) orlist_of_paths
(Python).
These environment variables:
UNSTRUCTURED_API_KEY
- Your Unstructured API key value.UNSTRUCTURED_API_URL
- Your Unstructured API URL.
Now call the Unstructured CLI or Python SDK. The destination connector can be any of the ones supported. This example uses the local destination connector: