What problem does it solve?
This Skill simplifies the process of managing Airtable records by allowing users to perform CRUD operations directly via curl commands, eliminating the need for complex APIs or SDKs.
Core Features & Use Cases
- CRUD Operations: Create, Read, Update, and Delete records in Airtable using curl.
- Filters and Queries: Apply filters and perform complex queries on Airtable records.
- Data Synchronization: Sync data between Airtable and other systems using curl commands.
- Use Case: Imagine you need to update the status of multiple records in an Airtable base. Use this Skill to write a single curl command that will update the status of all relevant records in one go.
Quick Start
To update the status of a record in Airtable, use the following curl command:
curl -X PATCH "https://api.airtable.com/v0/{BASE_ID}/{TABLE}/{RECORD_ID}" \
-H "Authorization: Bearer $AIRTABLE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"fields":{"Status":"Done"}}'