Airtable Integration

Connect Airtable bases and records to Metalogue

Airtable Integration

Connect your Airtable workspace to index bases, tables, and records.

Quick Start

const connector = await client.createConnector({
  connector_type: 'airtable',
  display_name: 'Company Airtable',
  credentials: {
    access_token: 'pat_xxxxxxxxxxxx',
  },
});

await client.syncConnector(connector.connector_id, true);

Synced Content

Content TypeIndexed Fields
Basesname, schema
Tablesname, fields
Recordsall text fields
Commentstext

Configuration

{
  "settings": {
    "bases": ["base-id"],
    "include_attachments": true
  }
}

Next Steps