--- title: 'Airtable' description: 'Create, read, update, and delete records in Airtable bases.' --- # Airtable Create, read, update, and delete records in Airtable bases. | Detail | Value | |---|---| | Category | Productivity | | Base URL | `https://api.airtable.com/v0` | | Authentication | Bearer Token | | Endpoints | 5 | | Connector key | `airtable` | ## Using Airtable in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Airtable** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /{baseId}/{tableIdOrName}](./get_baseid_tableidorname_data_listrecords) | List records in a table | | [POST /{baseId}/{tableIdOrName}](./post_baseid_tableidorname_data_createrecords) | Create records | | [PATCH /{baseId}/{tableIdOrName}](./patch_baseid_tableidorname_data_updaterecords) | Update records | | [DELETE /{baseId}/{tableIdOrName}](./delete_baseid_tableidorname_data_deleterecords) | Delete records | | [GET /meta/bases](./get_meta_bases_data_listbases) | List all bases | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.