What problem does it solve?
This Skill automates tasks such as creating, reading, updating, and deleting records in Airtable bases via the REST API, saving you time and streamlining workflows.
Core Features & Use Cases
- CRUD Operations: Create, read, update, and delete records with the Airtable REST API.
- Filtering & Sorting: Execute complex queries using filter formulas and sorting by fields.
- Data Merging: Perform upserts and batch updates efficiently.
- Use Case: Integrate with automation workflows or scripts to update or retrieve information from your Airtable databases.
Quick Start
Create a new record in an Airtable base by using the following curl command with your personal access token:
curl -X POST "https://api.airtable.com/v0/appXXXxx/XXXXXXX?fields=[\"Name\",\"Status\"]&records=[{\"fields\":{\"Name\":\"Task A\",\"Status\":\"Todo\"}}]" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"