Airtable API - Database & Records Automation avatar

Airtable API - Database & Records Automation

Pricing

from $0.05 / 1,000 results

Go to Apify Store
Airtable API - Database & Records Automation

Airtable API - Database & Records Automation

Automate your Airtable bases with the official API. List, create, update, and delete records. Manage tables and fields. Sync data between Airtable and other systems. Perfect for CRM automation, inventory management, project tracking, and data pipelines.

Pricing

from $0.05 / 1,000 results

Rating

0.0

(0)

Developer

The Howlers

The Howlers

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Automate Airtable bases with the official API. List, create, update, and delete records. Manage tables and fields. Sync data between Airtable and other systems. Perfect for CRM automation, inventory management, and data pipelines.

BYOK (Bring Your Own Key) -- you provide your own API credentials.


Before You Start

This actor requires your own API credentials to fetch real data.

Where to get your key: Airtable personal access token (from airtable.com/create/tokens)

You can test with Demo Mode first (free, no key needed) to see the output format before committing.


Quick Start

Test with Demo Mode (free, no API key needed)

{
"demoMode": true
}

Run with real data

{
"demoMode": false,
"task": "list_records",
"accessToken": "YOUR_API_KEY_HERE",
"fields": {},
"sort": [],
"maxRecords": 100,
"tableFields": [],
"fieldOptions": {},
"batchRecords": []
}

Input Parameters

ParameterTypeDefaultRequiredDescription
taskstring"list_records"Yes*Operation to perform
accessTokenstring-Yes*Airtable personal access token (from airtable.com/create/tokens)
baseIdstring-NoAirtable base ID (starts with 'app')
tableIdOrNamestring-NoTable ID (starts with 'tbl') or table name
recordIdstring-NoRecord ID for get/update/delete operations (starts with 'rec')
fieldIdstring-NoField ID for field operations (starts with 'fld')
fieldsobject{}NoFields object for create/update record operations (JSON)
filterByFormulastring-NoAirtable formula to filter records (e.g., "{Status} = 'Active'")
sortarray[]NoSort records by fields (JSON array: [{field: 'Name', direction: 'asc'}])
viewstring-NoAirtable view to use for listing records
maxRecordsinteger100NoMaximum number of records to return
tableNamestring-NoName for new table
tableDescriptionstring-NoDescription for new table
tableFieldsarray[]NoFields schema for new table (JSON array)
fieldNamestring-NoName for new field
fieldTypestring-NoType for new field
fieldOptionsobject{}NoAdditional options for field (JSON)
batchRecordsarray[]NoArray of records for batch operations
webhookUrlstring-NoURL to send results to (Zapier, Make, n8n, etc.)
demoModebooleantrueNoRun with sample data (no access token required)

*Required when Demo Mode is off.


Pricing

This actor uses pay-per-event billing:

EventDescriptionPrice
API RequestEach Airtable API request processed$0.01

Demo mode is free -- no charges for sample data.


Troubleshooting

"API key is required"

You have Demo Mode turned off but didn't provide an API key. Either:

  • Turn Demo Mode on to test with sample data
  • Add your API key in the input

"API error 403" or "Unauthorized"

Your API key is invalid, expired, or doesn't have access to this specific API endpoint. Double-check your key and account permissions.

"API error 429" or "Rate limit"

Too many requests. Wait a minute and try again, or reduce the number of items per run.

No results or empty dataset

Check the run log for error messages. Common causes:

  • Invalid input format (check the examples above)
  • API key without proper permissions
  • The target data doesn't exist or is too small to track

How do I test without an API key?

Enable Demo Mode in the input. This returns realistic sample data so you can verify the output format works for your workflow.


Built by John Rippy | Actor Arsenal