> ## 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 contacts in list

> List contacts currently belonging to one Brevo contact list.

`listContactsInList` pages through memberships of one list.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listContactsInList } from "automate.ax/brevo"

export default automation("List launch contacts", () => {
  onHttpRequest({ scope: "automation" })

  listContactsInList({ list: "2026 Launch", limit: 200 })
})
```

`list` is required. `limit` defaults to 50 (maximum 500), `offset` to 0, and
`sort` to `desc`; `modifiedSince` optionally filters by RFC 3339 timestamp.
`account` selects the Brevo binding.

Returns `{ count, contacts }`; each contact has the shape from [Get contact](/reference/integrations/brevo/actions/get-contact#output). Advance `offset` to page.
