> ## Documentation Index
> Fetch the complete documentation index at: https://forest-chore-open-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Airtable

> Connect Airtable bases to Forest

<Note>Only available for Node.js.</Note>

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

```bash theme={null}
npm install @forestadmin-experimental/datasource-airtable
```

## Basic usage

```javascript theme={null}
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](https://github.com/ForestAdmin/forestadmin-experimental/tree/main/packages/datasource-airtable)

## Source code

This connector is open source. Browse the code or contribute on GitHub: [`@forestadmin-experimental/datasource-airtable`](https://github.com/ForestAdmin/forestadmin-experimental/tree/main/packages/datasource-airtable).
