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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Airtable

> Read schemas and create, list, update, and delete Airtable records from TypeScript automations.

Import Airtable actions from `automate.ax/airtable`. Actions accept plain values
or compatible signals, so an Airtable record ID returned by one action can feed
directly into the next.

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { createRecord } from "automate.ax/airtable"

export default automation("Add an Airtable lead", () => {
  onHttpRequest({ scope: "automation" })

  createRecord({
    base: "Sales",
    table: "Leads",
    fields: { Name: "Ada Lovelace", Status: "New" },
  })
})
```

## Accounts

Airtable actions use a connected Airtable account. Leave `account` unset to use
the project's default binding, or pass an Airtable account binding when an
automation can access more than one account. The connection must have access to
the requested base and the schema or record scopes required by the action.

You may identify a base by exact name or stable `app...` ID. Tables and views
accept names or stable IDs. Prefer IDs when a user may rename them.

## Explore Airtable

<CardGroup cols={2}>
  <Card title="Inspect bases" href="/reference/integrations/airtable/actions/list-bases">
    Discover accessible bases, tables, fields, and views.
  </Card>

  <Card title="List records" href="/reference/integrations/airtable/actions/list-records">
    Read records with views, formulas, selected fields, sorting, and limits.
  </Card>

  <Card title="Create records" href="/reference/integrations/airtable/actions/create-records">
    Create one record or a provider-batched collection.
  </Card>

  <Card title="Update records" href="/reference/integrations/airtable/actions/update-records">
    Merge or replace fields on one or more records.
  </Card>
</CardGroup>
