Appearance
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
- Go to Connections and click New Connection.
- Pick Airtable from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /{baseId}/{tableIdOrName} | List records in a table |
POST /{baseId}/{tableIdOrName} | Create records |
PATCH /{baseId}/{tableIdOrName} | Update records |
DELETE /{baseId}/{tableIdOrName} | Delete records |
GET /meta/bases | List all bases |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /{baseId}/{tableIdOrName}
List records in a table
| Detail | Value |
|---|---|
| Operation ID | data.listRecords |
| Method | GET |
| Path | /{baseId}/{tableIdOrName} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
baseId | path | string | Yes |
tableIdOrName | path | string | Yes |
maxRecords | query | integer | No |
view | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Airtable connection from the Connection dropdown.
- In the Operation dropdown, select
data.listRecords. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Airtable API reference.
POST /{baseId}/{tableIdOrName}
Create records
| Detail | Value |
|---|---|
| Operation ID | data.createRecords |
| Method | POST |
| Path | /{baseId}/{tableIdOrName} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
baseId | path | string | Yes |
tableIdOrName | path | string | Yes |
Request Body
| Field | Type |
|---|---|
records | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Airtable connection from the Connection dropdown.
- In the Operation dropdown, select
data.createRecords. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Airtable API reference.
PATCH /{baseId}/{tableIdOrName}
Update records
| Detail | Value |
|---|---|
| Operation ID | data.updateRecords |
| Method | PATCH |
| Path | /{baseId}/{tableIdOrName} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
baseId | path | string | Yes |
tableIdOrName | path | string | Yes |
Request Body
| Field | Type |
|---|---|
records | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Airtable connection from the Connection dropdown.
- In the Operation dropdown, select
data.updateRecords. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Airtable API reference.
DELETE /{baseId}/{tableIdOrName}
Delete records
| Detail | Value |
|---|---|
| Operation ID | data.deleteRecords |
| Method | DELETE |
| Path | /{baseId}/{tableIdOrName} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
baseId | path | string | Yes |
tableIdOrName | path | string | Yes |
records[] | query | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Airtable connection from the Connection dropdown.
- In the Operation dropdown, select
data.deleteRecords. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Airtable API reference.
GET /meta/bases
List all bases
| Detail | Value |
|---|---|
| Operation ID | data.listBases |
| Method | GET |
| Path | /meta/bases |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Airtable connection from the Connection dropdown.
- In the Operation dropdown, select
data.listBases. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Airtable API reference.