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

# BatchSubmitBody

Batch submit request body.

## Example Usage

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

let value: BatchSubmitBody = {
  endpoint: "/v1/chat/completions",
  model: "Fiesta",
  requests: [],
};
```

## Fields

| Field              | Type                                                                                    | Required             | Description                                                            | Example                                               |
| ------------------ | --------------------------------------------------------------------------------------- | -------------------- | ---------------------------------------------------------------------- | ----------------------------------------------------- |
| `completionWindow` | [models.BatchSubmitBodyCompletionWindow](../models/batchsubmitbodycompletionwindow.mdx) | :heavy\_minus\_sign: | N/A                                                                    |                                                       |
| `endpoint`         | [models.Endpoint](../models/endpoint.mdx)                                               | :heavy\_check\_mark: | N/A                                                                    |                                                       |
| `model`            | *string*                                                                                | :heavy\_check\_mark: | N/A                                                                    |                                                       |
| `provider`         | [models.BatchProviderPreferences](../models/batchproviderpreferences.mdx)               | :heavy\_minus\_sign: | Batch provider routing preferences. Only `provider.only` is supported. | \{<br />"only": \[<br />"google-vertex"<br />]<br />} |
| `requests`         | [models.RequestT](../models/requestt.mdx)\[]                                            | :heavy\_check\_mark: | N/A                                                                    |                                                       |
