What problem does it solve?
Managing Airtable data from the command line eliminates the need to switch to the web UI, enabling repeatable, auditable CRUD interactions with bases, tables, and records through the REST API using curl. This Skill provides guidance on authenticating with a Personal Access Token (PAT), composing JSON payloads, and handling common tasks like listing bases, reading records, creating, updating, and deleting records, all with curl and proper error handling.
Core Features & Use Cases
- REST API CRUD access to bases, tables, and records via curl for automation-friendly workflows.
- Filter and pagination support with filterByFormula, sorting, and page-based retrieval to scale queries.
- Batch upserts and updates enabling idempotent syncs across bases and tables using JSON payloads.
- Operational safety guidance on rate limits, token scoping, and error codes to recover gracefully.
Quick Start
Export your PAT as AIRTABLE_API_KEY and run a curl command to read or modify a base, table, or record.