airtable

Perform CRUD operations on Airtable records via the REST API.

4|3|Updated Feb 23, 2026
One-click install
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill airtable-qhkm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airtable
Source: https://github.com/qhkm/zeptoclaw-skills/tree/main/airtable
Command: npx skills add https://github.com/qhkm/zeptoclaw-skills --skill airtable-qhkm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Read, create, update, and delete Airtable records via the REST API, enabling programmatic data management instead of manual table edits.

Core Features & Use Cases

  • List Records: Retrieve records from a base/table with optional filters.
  • Create a Record: Add new records to a table.
  • Update a Record: Modify existing record fields.
  • Delete a Record: Remove records from a table.

Quick Start

Export AIRTABLE_TOKEN, AIRTABLE_BASE_ID, and AIRTABLE_TABLE_NAME as environment variables and run the skill to manage your Airtable records.

Frequently Asked Questions about airtable

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Airtable records via the REST API?

To manage Airtable records via the REST API, you perform CRUD operations using HTTP requests with Bearer authentication. This enables programmatic listing, creating, updating, and deleting of records from external data sources instead of manual table edits.

What environment variables do I need to automate Airtable workflows?

To automate Airtable workflows, you need to export AIRTABLE_TOKEN, AIRTABLE_BASE_ID, and AIRTABLE_TABLE_NAME as environment variables. These provide the Bearer authentication credentials and target table context required for REST API HTTP requests.

Can I filter records when listing data from an Airtable base?

You can retrieve records from an Airtable base with optional filters using the list operation. This REST API integration supports fetching specific data subsets programmatically, enabling automated workflows across your external data sources.

What is the best way to create and update Airtable records from external sources?

The best way to create and update Airtable records from external sources is by using REST API HTTP requests with Bearer authentication. This approach supports adding new records and modifying existing record fields programmatically for automated data management.

Does this Airtable REST API integration support deleting records?

This Airtable REST API integration supports deleting records to remove data from your tables. By sending authenticated HTTP requests, you can programmatically delete records, completing the full CRUD lifecycle for automated records workflows.