airtable

Perform CRUD operations on Airtable records via curl with personal access tokens.

Updated Jun 13, 2026
One-click install
npx skills add https://github.com/DonZzzilla/kalshi-explorer --skill airtable-donzzzilla
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airtable
Source: https://github.com/DonZzzilla/kalshi-explorer/tree/main/skills/user-skills/productivity/airtable
Command: npx skills add https://github.com/DonZzzilla/kalshi-explorer --skill airtable-donzzzilla

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, and includes scripts (resource) components.

What problem does it solve?

This Skill allows you to perform CRUD operations on Airtable's REST API directly via curl, making it easier to interact with your data without needing to use the Airtable interface or write additional code.

Core Features & Use Cases

  • CRUD Operations: Perform Create, Read, Update, and Delete operations on Airtable records.
  • Filters and Upserts: Execute queries with filters and upsert data efficiently.
  • Use Case: Imagine you need to sync data between an Airtable base and an external database. Use this Skill to write a script that updates records in Airtable based on changes in the external database.

Quick Start

To create a new record in an Airtable base, run the following command:

curl -X POST "https://api.airtable.com/v0/appxxxxxxxxxxxxxx/table1" \
  -H "Authorization: Bearer pat_your_token_here" \
  -H "Content-Type: application/json" \
  -d '{"fields":{"Name":"New task","Status":"Todo","Priority":"High"}}'

Frequently Asked Questions about airtable

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Airtable records using curl?

You can manage Airtable records using curl by sending HTTP requests to the Airtable REST API. This Skill performs CRUD operations directly, allowing automated data management without needing the Airtable interface or additional code.

Do I need a personal access token to interact with the Airtable API?

Yes, a personal access token is required to interact with the Airtable API. This Skill uses personal access tokens for base-specific authorization to securely execute curl commands for your CRUD operations.

Can I filter records or upsert data with the Airtable REST API via curl?

Yes, you can filter records and upsert data with the Airtable REST API via curl. This Skill supports executing queries with filters and efficiently upserting data for automated administrative workflows.

What is the best way to automate syncing data to an Airtable base from an external source?

The best way to automate syncing data to an Airtable base is using curl scripts to update records via the REST API. This Skill enables automated data management by writing scripts that sync external database changes to Airtable.

Does this approach to Airtable data management require any additional dependencies?

This approach to Airtable data management requires curl for making HTTP requests and a personal access token from Airtable. It is designed as a script-based solution for direct API interaction without other dependencies.