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

# Download report

> Download a filtered MillionVerifier bulk verification report.

`millionVerifier.downloadReport` downloads results for a bulk file.

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

export default automation("Download usable emails", () => {
  onDashboardRun({ title: "Download usable emails" })
  millionVerifier.downloadReport({
    fileId: "123",
    filter: "okAndCatchAll",
  })
})
```

Provide `fileId`. `filter` defaults to `all` and accepts `ok`, `okAndCatchAll`, `unknown`, `invalid`, `all`, or `custom`. With `custom`, select `statuses` from `ok`, `catchAll`, `unknown`, `invalid`, and `disposable`, and optionally set the `free` or `role` flags. An optional second argument `{ account }` selects a named MillionVerifier binding.

Returns a `Blob` containing the provider report. MillionVerifier errors returned as JSON are rejected instead of being returned as files.
