Skip to main content
Only available for Node.js.
The Airtable datasource connects your Airtable bases to Forest, allowing you to browse, search, and manage your Airtable data directly from your back-office.

Installation

npm install @forestadmin-experimental/datasource-airtable

Basic usage

import { createAgent } from '@forestadmin/agent';
import { createAirtableDataSource } from '@forestadmin-experimental/datasource-airtable';

const agent = createAgent(options);

agent.addDataSource(
  createAirtableDataSource({
    apiKey: process.env.AIRTABLE_API_KEY,
    baseId: process.env.AIRTABLE_BASE_ID
  })
);

Source code

github.com/ForestAdmin/forestadmin-experimental, datasource-airtable

Source code

This connector is open source. Browse the code or contribute on GitHub: @forestadmin-experimental/datasource-airtable.