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

# Get file

> Read the current status and counts for one MillionVerifier bulk file.

`millionVerifier.getFile` reads one bulk verification file.

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

export default automation("Get verification file", () => {
  onDashboardRun({ title: "Get verification file" })
  millionVerifier.getFile({ fileId: "123" })
})
```

Provide the numeric `fileId` as a string or number. An optional second argument `{ account }` selects a named MillionVerifier binding.

Returns the normalized file status, progress, row and result counts, required credits, estimated seconds, provider error text, and provider timestamps.
