- Provider
- airtable
- Category
- Productivity
- Setup
- See setup section below
- Actions
- 25 available
Quick start
Call Airtable from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Airtable's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"AIRTABLE_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
Setup details for Airtable aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.
Available actions
25 actions exposed via the
Airtable integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
AIRTABLE_CREATE_BASE -
AIRTABLE_CREATE_COMMENT -
AIRTABLE_CREATE_FIELD -
AIRTABLE_CREATE_MULTIPLE_RECORDS -
AIRTABLE_CREATE_RECORD -
AIRTABLE_CREATE_RECORD_FROM_NATURAL_LANGUAGE -
AIRTABLE_CREATE_RECORDS -
AIRTABLE_CREATE_TABLE -
AIRTABLE_DELETE_COMMENT -
AIRTABLE_DELETE_MULTIPLE_RECORDS -
AIRTABLE_DELETE_RECORD -
AIRTABLE_GET_BASE_SCHEMA
Show all 25 actions
-
AIRTABLE_GET_RECORD -
AIRTABLE_GET_USER_INFO -
AIRTABLE_LIST_BASES -
AIRTABLE_LIST_COMMENTS -
AIRTABLE_LIST_RECORDS -
AIRTABLE_UPDATE_COMMENT -
AIRTABLE_UPDATE_FIELD -
AIRTABLE_UPDATE_MULTIPLE_RECORDS -
AIRTABLE_UPDATE_MULTIPLE_RECORDS_PUT -
AIRTABLE_UPDATE_RECORD -
AIRTABLE_UPDATE_RECORD_PUT -
AIRTABLE_UPDATE_TABLE -
AIRTABLE_UPLOAD_ATTACHMENT
Build with Airtable
Open OverSkill, describe what you want to build, and reference Airtable in your prompt — the AI will wire up the integration automatically.