Airtable
Integrate with Airtable
- Authentication
- API Key
- HTTPS
- Yes
- CORS
- Unknown
- Category
- Documents & Productivity
- Documentation / URL
- https://airtable.com/api
Overview
The Airtable API turns your Airtable bases into a RESTful data store — list, create, update, and delete records in tables, manage fields, and build apps on top of a spreadsheet-like database. Auth is a personal access token (or legacy API key).
Quick Start
A personal access token is required (create at airtable.com/create/tokens):
# List records in a table:
curl "https://api.airtable.com/v0/BASE_ID/TABLE_NAME" \
-H "Authorization: Bearer YOUR_TOKEN"
With filtering and pagination:
curl "https://api.airtable.com/v0/BASE_ID/TABLE_NAME?filterByFormula=NOT({Status}%3D'Done')&pageSize=100" \
-H "Authorization: Bearer YOUR_TOKEN"
Create a record:
curl -X POST "https://api.airtable.com/v0/BASE_ID/TABLE_NAME" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"fields": {"Name": "New item", "Status": "Todo"}}'
Update a record:
curl -X PATCH "https://api.airtable.com/v0/BASE_ID/TABLE_NAME/RECORD_ID" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"fields": {"Status": "Done"}}'
Authentication
- Create a personal access token at airtable.com/create/tokens (scoped per base).
- Send it as
Authorization: Bearer YOUR_TOKEN. - Base ID is in the API docs for your base (https://airtable.com/{baseId}/api).
Rate Limits & Notes
- Rate limit: 5 requests/second per base (cached/auth’d apps can go higher).
- Bases over 1,000 records need pagination (
offsetparam in responses). filterByFormulauses Airtable formula syntax (URL-encode it).- The metadata API (
/v0/meta/bases) lists your bases and schemas.
FAQ
Is Airtable API free? Yes — the API is free within rate limits on any plan.
How do I get a token? airtable.com/create/tokens → create a scoped personal access token.
How do I filter records?
filterByFormula=... with URL-encoded Airtable formula syntax.
More in Documents & Productivity
| API | Auth | HTTPS | CORS | |
|---|---|---|---|---|
| Api2Convert Online File Conversion API | API Key | Yes | Unknown | ↗ |
| apilayer pdflayer HTML/URL to PDF | API Key | Yes | Unknown | ↗ |
| Asana Programmatic access to all data in your asana system | API Key | Yes | Yes | ↗ |
| ClickUp ClickUp is a robust, cloud-based project management tool for boosting productivity | OAuth | Yes | Unknown | ↗ |
| Clockify Clockify's REST-based API can be used to push/pull data to/from it & integrate it with other systems | API Key | Yes | Unknown | ↗ |