> ## Documentation Index
> Fetch the complete documentation index at: https://www.anything.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Airtable

> Integrate and manage your data with Airtable

Airtable lets you create powerful databases, organize your information, and connect it to your applications.

## Overview

<CardGroup cols={2}>
  <Card title="Create Account" icon="user">
    Sign up for an Airtable account
  </Card>

  <Card title="Get API Key" icon="key">
    Generate your Airtable API key
  </Card>

  <Card title="Copy into Anything" icon="plug">
    Add your API key to Anything's secrets
  </Card>
</CardGroup>

## Account Creation

<Steps>
  <Step title="Visit Airtable Website">
    Go to [airtable.com](https://airtable.com/) and click "Sign up" in the top right corner

    <img src="https://mintcdn.com/create/0uSd9vqrMRrQ_VKJ/images/airtable/homepage.png?fit=max&auto=format&n=0uSd9vqrMRrQ_VKJ&q=85&s=0715f154de5c12238a55c6c5876e8417" style={{ borderRadius: '0.5rem', width: '624px', height: '303px' }} width="2818" height="1320" data-path="images/airtable/homepage.png" />
  </Step>

  <Step title="Choose Signup Method">
    * Sign up with email/password
    * Or continue with Google, Apple, or other authentication options

    <img src="https://mintcdn.com/create/0uSd9vqrMRrQ_VKJ/images/airtable/signup.png?fit=max&auto=format&n=0uSd9vqrMRrQ_VKJ&q=85&s=d3b5d6d073a936219ba1b0f14f24c137" style={{ borderRadius: '0.5rem'}} width="1076" height="1086" data-path="images/airtable/signup.png" />
  </Step>
</Steps>

## Generate API Key

<Steps>
  <Step title="Access Account Settings">
    Go to [airtable.com/create/token](https://airtable.com/create/token).
  </Step>

  <Step title="Create Personal Access Token">
    1. Navigate to the "Personal Access Token" section
    2. Click "Create new token"
    3. Name your key (e.g., "Anything Integration")
    4. Add read and write data scopes
    5. Add your workspace table

    <img src="https://mintcdn.com/create/0uSd9vqrMRrQ_VKJ/images/airtable/patscope.png?fit=max&auto=format&n=0uSd9vqrMRrQ_VKJ&q=85&s=757fee87e7228a8b4f4616a2d0cefe8f" style={{ borderRadius: '0.5rem' }} width="1538" height="1332" data-path="images/airtable/patscope.png" />
  </Step>

  <Step title="Copy Your PAT Token">
    1. Copy the generated PAT Token
    2. Store it securely.

    <img src="https://mintcdn.com/create/0uSd9vqrMRrQ_VKJ/images/airtable/patgen.png?fit=max&auto=format&n=0uSd9vqrMRrQ_VKJ&q=85&s=6ca8b466b372d5ecbf2117b21c3f7ecd" style={{ borderRadius: '0.5rem' }} width="2252" height="602" data-path="images/airtable/patgen.png" />

    <Warning>
      Keep your PAT Token secure - it grants access to your Airtable data
    </Warning>
  </Step>
</Steps>

## Get Base and Table ID

<Steps>
  <Step title="Open Your Airtable Base">
    1. Navigate to the Airtable base you want to connect to
    2. Look at the URL in your browser

    <img src="https://mintcdn.com/create/0uSd9vqrMRrQ_VKJ/images/airtable/get-id.png?fit=max&auto=format&n=0uSd9vqrMRrQ_VKJ&q=85&s=d4123e28a42f0e63c163c67e102743c2" style={{ borderRadius: '0.5rem' }} width="1650" height="64" data-path="images/airtable/get-id.png" />
  </Step>

  <Step title="Extract Base and Table ID">
    1. The Base and Table ID is in the URL after "airtable.com/" and typically starts with "app"
    2. Copy this ID - you'll need it when connecting to your base

    <Tip>
      The Base and Table ID format looks like: app12345abcdef/tb12345abcdef
    </Tip>
  </Step>
</Steps>

## Add to Anything project

<Steps>
  <Step title="Add the integration">
    1. In your Anything project, type `/` in the chat
    2. Select "Airtable" from the menu
  </Step>

  <Step title="Add your API key">
    1. Paste your Airtable API key into the "AIRTABLE\_TOKEN" field
    2. Add your Base ID to the "AIRTABLE\_BASE\_ID" field
    3. Add your Table ID to the "AIRTABLE\_TABLE\_ID" field

    <Tip>
      Need a new token? Generate one in your Airtable account settings.
    </Tip>
  </Step>

  <Step title="Use it">
    You can now use prompts with the integration to manage your Airtable data.

    Some examples:

    * `Create a new record in my Airtable base with /Airtable`
    * `Fetch data from my Products table using /Airtable`
    * `Update customer information with /Airtable`

    <Warning>
      The API limits how often your app can fetch data. If your app loads the same data often, ask the agent to save it locally so it doesn't re-fetch every time.
    </Warning>

    Example prompt for optimization:

    ```
    When using /Airtable, save the data so my app doesn't have to fetch it again
    ```
  </Step>
</Steps>

<Tip>
  Your Airtable integration is now ready! Use the `/Airtable` command in chat to manage your data.
</Tip>
