> ## 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 files

> List MillionVerifier bulk files with provider-supported filters.

`millionVerifier.listFiles` lists uploaded bulk files.

```ts automations/millionverifier-list-files.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { millionVerifier } from "automate.ax/millionverifier"

export default automation("List finished files", () => {
  onDashboardRun({ title: "List finished files" })
  millionVerifier.listFiles({ statuses: ["finished"] })
})
```

## Inputs

`limit` defaults to 50 and accepts 1–50; `offset` defaults to 0. Filter by `fileIds`, `name`, `statuses`, `hasError`, `percentFrom`, `percentTo`, and created or updated timestamps. Dates can be JavaScript `Date` values or provider-formatted `YYYY-MM-DD HH:mm:ss` strings. Status values are `inProgress`, `error`, `finished`, `canceled`, `paused`, and `inQueueToStart`.

An optional second argument `{ account }` selects a named MillionVerifier binding.

## Output

Returns `{ files, total }`. Each file uses the same normalized shape as `getFile`.
