> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List record comments

> List comments and replies on an Airtable record.

`airtable.listRecordComments` follows comment pagination and returns comments newest first.

```ts automations/read-airtable-comments.automation.ts theme={null}
import { automation } from "automate.ax"
import { airtable } from "automate.ax/airtable"

export default automation("Read Airtable comments", () => {
  airtable.listRecordComments({
    baseId: "app123",
    table: "Contacts",
    recordId: "rec123",
  })
})
```

`baseId`, table name or ID `table`, and `recordId` are required. `pageSize` defaults to 100 and accepts 1–100; `maxComments` is optional. Returns `{ comments, count }`. Comment dates are `Date`; attachment URLs expire after two hours. Requires `data.recordComments:read`.
