Sign in

Create records

documented

Create one or more records in a table (batch up to 10 per request in practice).

POST /v0/{baseId}/{tableName}Recordsno implementation yet0 runs
No 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}}"}}]}'
Create records · Airtable · OpenIntegrations