> ## 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 Active Call

> End an active phone call by call_id. This endpoint can also be used to cancel scheduled calls. 

### Headers

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

### Path Parameters

<ParamField path="call_id" type="string" required>
  The unique identifier for the call you want to end.
</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>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Call ended successfully."
  }
  ```
</ResponseExample>

***

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