You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@versatly/airtable-cli

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@versatly/airtable-cli

Airtable CLI for bases, tables, and records

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

@versatly/airtable-cli

CLI for Airtable base, table, and record operations using the official Airtable SDK.

Install

npm install -g @versatly/airtable-cli

Authentication

Create a personal access token in Airtable and export it as AIRTABLE_API_KEY:

export AIRTABLE_API_KEY="patXXXXXXXXXXXXXX"

Usage

List bases:

airtable bases list

List tables in a base:

airtable tables list --base appXXXXXXXXXXXXXX

List records (optionally by view):

airtable records list --base appXXXXXXXXXXXXXX --table "Projects"
airtable records list --base appXXXXXXXXXXXXXX --table "Projects" --view "Main View"

Get a record:

airtable records get --base appXXXXXXXXXXXXXX --table "Projects" --id recXXXXXXXXXXXXXX

Create a record:

airtable records create --base appXXXXXXXXXXXXXX --table "Projects" --fields '{"Name":"Launch","Status":"In Progress"}'

Update a record:

airtable records update --base appXXXXXXXXXXXXXX --table "Projects" --id recXXXXXXXXXXXXXX --fields '{"Status":"Done"}'

Delete a record:

airtable records delete --base appXXXXXXXXXXXXXX --table "Projects" --id recXXXXXXXXXXXXXX

Search with a formula:

airtable search --base appXXXXXXXXXXXXXX --table "Projects" --query "FIND('Launch', {Name})"

Output

All commands emit JSON to stdout for easy piping into other tools.

Keywords

airtable

FAQs

Package last updated on 06 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts