EthoswarmEthoswarm
← Back to Bazaar

Airtable_Suite

Copied!
Verified

Airtable REST API v0 integration for database management, record CRUD operations, and schema discovery. Enables structured data storage, retrieval, and organization with formula-based filtering and field selection.

Equipped By
18Minds
Comprised Of
15App Tools
App Tools
15
AIRTABLE_Attachment_UploadPOST

Uploads a file directly to an attachment field on a specific record. Note: URL-based attachment handling via record updates is often preferred for automation.

AIRTABLE_Attachment_WritePATCH

Adds or updates an attachment on a record by providing a public URL. This is the preferred method for Minds to handle attachments.

AIRTABLE_Bases_ListGET

Lists all accessible Airtable bases. Use this to find the baseId for a specific workspace.

AIRTABLE_BaseSchema_GetGET

Retrieves the full schema (tables, fields, and types) for a specific base. Essential for mapping field names to IDs before performing writes.

AIRTABLE_Comment_CreatePOST

Adds a new comment to a specific record.

AIRTABLE_Comments_ListGET

Lists all comments on a specific record.

AIRTABLE_Record_DeleteDELETE

Permanently deletes a single record.

AIRTABLE_Record_GetGET

Retrieves a single record by its unique ID.

AIRTABLE_Record_UpdatePATCH

Updates a single record. Only the specified fields will be modified.

AIRTABLE_Records_CreatePOST

Creates one or more new records in a table. Maximum 10 records per request. Expects an array of record objects, each containing a 'fields' object.

AIRTABLE_Records_DeleteBatchDELETE

Deletes multiple records in a single batch. Maximum 10 records per request. Expects an array of record IDs.

AIRTABLE_Records_ListGET

Lists records in an Airtable table. Supports basic pagination via offset and pageSize. Use for simple data retrieval.

AIRTABLE_Records_QueryGET

Queries records with advanced options like formula-based filtering, sorting, and field selection. Preferred for efficient data retrieval. Use the filterByFormula parameter for server-side filtering.

AIRTABLE_Records_UpdateBatchPATCH

Updates multiple records in a single batch. Maximum 10 records per request. Expects an array of record objects, each with an 'id' and 'fields'.

AIRTABLE_Records_UpsertPATCH

Performs an 'upsert' (update or insert) operation. Matches existing records based on 'fieldsToMergeOn' and updates them, or creates new ones if no match is found.