What problem does it solve? Working with Airtable data programmatically usually requires SDKs, OAuth flows, or MCP servers. This Skill lets you perform full CRUD operations on Airtable bases, tables, and records directly through the REST API using curl and a personal access token, with no extra infrastructure. ## Core Features & Use Cases - Records CRUD and batch operations: Create, read, update (PATCH), upsert, and delete records, including batches of up to 10 records per request. - Filtering, sorting, and pagination: Query records with URL-encoded filterByFormula expressions, named views, field selection, and offset-based pagination loops. - Schema inspection: List accessible bases and table schemas before mutating data to confirm exact field names, IDs, and select options. - Use Case: Sync a list of new signups into an Airtable CRM table by upserting on the Email field, so existing contacts are patched and new ones are created idempotently. ## Quick Start Ask the agent to list the tables in your Airtable base and show the first ten records from a specific table.