Create records
documentedCreate one or more records in a table (batch up to 10 per request in practice).
POST /v0/{baseId}/{tableName}Recordsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.airtable.com/v0/{{$baseId}}/{{$tableName}}" \
-X POST \
-H "Authorization: Bearer {{AIRTABLE_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"records":[{"fields":{"Name":"{{$name}}","Description":"{{$description}}"}}]}'