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

# Stop Batch

> Stop a batch that is currently running or scheduled.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="batch_id" type="string" required>
  The unique identifier of the batch to stop.
</ParamField>

### Response

<ResponseField name="data" type="null">
  Always `null` on success.
</ResponseField>

<ResponseField name="errors" type="null">
  `null` if the batch was successfully stopped.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": null,
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
