What problem does it solve?
This Skill provides a straightforward way to interact with the Airtable API using curl, simplifying CRUD operations and filtering on records without the need for complex SDKs or OAuth flows.
Core Features & Use Cases
- CRUD Operations: Perform Create, Read, Update, and Delete operations on Airtable records.
- Filtering: Apply complex filters using Airtable's formula syntax directly via
curl.
- Use Case: Automate tasks such as syncing data between Airtable and other systems, generating reports, or updating records based on specific criteria.
Quick Start
Set up your Airtable API key and personal access token, then use the airtable skill to create a new record in your Airtable base with the command: use airtable create "New record" in "Table Name" --fields "Field Name": "Value" --base-id "Base ID" --table-id "Table ID" --api-key "API Key" --token "Token" --auth-type "Bearer" --format "json" --header "Content-Type: application/json" --method "POST" --url "https://api.airtable.com/v0/{Base ID}/{Table ID}/{Record ID}"