airtable

Automate CRUD operations on Airtable records via the REST API.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/shuff57/agent-evo --skill airtable-shuff57
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airtable
Source: https://github.com/shuff57/agent-evo/tree/main/skills/.archive/topics-2026-05-10/productivity/airtable
Command: npx skills add https://github.com/shuff57/agent-evo --skill airtable-shuff57

SYSTEM DOCUMENTATION & REQUIREMENTS

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

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"

Frequently Asked Questions about airtable

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

FAQPage Schema
How do I automate Airtable CRUD operations using shell scripts?

You can automate Airtable CRUD operations using shell scripts by executing cURL commands against the Airtable REST API to create, read, update, and delete records efficiently.

Can I filter and sort Airtable records via the REST API?

Yes, you can filter and sort Airtable records via the REST API by passing complex filter formulas and sorting parameters in your cURL requests to query specific data.

What's the best way to perform upserts and batch updates in Airtable?

The best way to perform upserts and batch updates in Airtable is using cURL requests to the REST API, which allows efficient data merging and bulk record modifications.

Do I need cURL installed to automate Airtable API tasks?

Yes, you need cURL installed because this Skill relies on it to send HTTP requests to the Airtable REST API for executing data manipulation and automation workflows.

How do I create a new record in an Airtable base using cURL?

To create a new record in an Airtable base using cURL, send a POST request to the Airtable REST API endpoint with your personal access token and the specified field data.