> ## 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 contact lists

> List contact lists available in a Brevo account.

`listContactLists` returns a page of list identities and membership counts.

## Example

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

export default automation("Inventory contact lists", () => {
  onHttpRequest({ scope: "automation" })

  listContactLists({ limit: 50, sort: "asc" })
})
```

`limit` defaults to 10 (maximum 50), `offset` to 0, and `sort` to `desc`.
`account` selects the Brevo binding.

Returns `{ count, lists }`. Each list has positive numeric `id` and `folderId`,
`name`, `uniqueSubscribers`, and optional `totalSubscribers` and
`totalBlacklisted`. Use the ID for stable follow-up references; exact names are
also accepted but fail when duplicated.
