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

# BatchListResponse

A newest-first page of metadata-only batch objects.

## Example Usage

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

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

## Fields

| Field     | Type                                                                    | Required             | Description |
| --------- | ----------------------------------------------------------------------- | -------------------- | ----------- |
| `data`    | [models.BatchListItem](../models/batchlistitem.mdx)\[]                  | :heavy\_check\_mark: | N/A         |
| `firstId` | *string*                                                                | :heavy\_check\_mark: | N/A         |
| `hasMore` | *boolean*                                                               | :heavy\_check\_mark: | N/A         |
| `lastId`  | *string*                                                                | :heavy\_check\_mark: | N/A         |
| `object`  | [models.BatchListResponseObject](../models/batchlistresponseobject.mdx) | :heavy\_check\_mark: | N/A         |
