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 records directly through curl with a personal access token, covering filtering, sorting, upserts, batch operations, and pagination. ## Core Features & Use Cases - Records CRUD: Create, read, update (PATCH), upsert, and delete records individually or in batches of up to 10 per request. - Filtering & Querying: Use filterByFormula with proper URL encoding, sorting, field selection, and named views to retrieve exactly the data you need. - Schema Inspection: List accessible bases and table schemas before mutating data to confirm field names, IDs, and select options. - Use Case: Sync a list of customer emails into an Airtable CRM table using performUpsert on the Email field, so existing contacts are updated and new ones are created idempotently. ## Quick Start Ask the assistant to list the records in your Airtable table or create a new record in a specific base and table using your AIRTABLE_API_KEY.