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

```python theme={null}
from openrouter.components import BatchListStatus

# Open enum: unrecognized values are captured as UnrecognizedStr
value: BatchListStatus = "validating"
```

## Values

This is an open enum. Unrecognized values will not fail type checks.

* `"validating"`
* `"in_progress"`
* `"completed"`
* `"failed"`
* `"expired"`
* `"cancelled"`
