> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# BatchListStatus

A batch status that is durably represented by the list data source. `finalizing` and `cancelling` are not accepted because stored jobs collapse those phases into `in_progress`.

## Example Usage

```typescript theme={null}
import { BatchListStatus } from "@openrouter/sdk/models";

let value: BatchListStatus = "completed";

// Open enum: unrecognized values are captured as Unrecognized<string>
```

## Values

```typescript theme={null}
"validating" | "in_progress" | "completed" | "failed" | "expired" | "cancelled" | Unrecognized<string>
```
