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

# ListBatchesResponse

## Example Usage

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

let value: ListBatchesResponse = {
  result: {
    data: [],
    firstId: null,
    hasMore: false,
    lastId: null,
    object: "list",
  },
};
```

## Fields

| Field    | Type                                                           | Required             | Description | Example                                                                                                                   |
| -------- | -------------------------------------------------------------- | -------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------- |
| `result` | [models.BatchListResponse](../../models/batchlistresponse.mdx) | :heavy\_check\_mark: | N/A         | \{<br />"data": \[],<br />"first\_id": null,<br />"has\_more": false,<br />"last\_id": null,<br />"object": "list"<br />} |
