> ## 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 All Active Calls

> End all active phone calls on your account.

### Headers

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

### Response

<ResponseField name="status" type="string">
  Can be `success` or `error`.
</ResponseField>

<ResponseField name="message" type="string">
  If the status is `success`, the message will say "Call ended successfully."
  Otherwise, if the status is `error`, the message will say "SID not found for
  the given c\_id." or "Internal server error."
</ResponseField>

<ResponseField name="num_calls" type="integer">
  The number of active calls that will be cancelled.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Stopping active calls. This may take some time...",
    "num_calls": 12
  }
  ```
</ResponseExample>

***

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